Javascript 列格式字符串
虽然我在 C 和 Java 中使用过它,但我忘记了获取占位符以在文本输出上创建列的基本输出方法:
Oakenshield Thorin
Baggins Bilbo
Gray, the Gandalf
那么,一旦知道了这个函数,我在哪里可以找到一个独立的库来在 Javascript 中执行此操作?
Although I've worked with it in C and Java, I forget the basic output method for getting placeholders to make columns on a text output:
Oakenshield Thorin
Baggins Bilbo
Gray, the Gandalf
Then, once this function is known, where can I find a standalone library to do it in Javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的意思是
sprintf()
的 宽度格式说明符 (例如%20d
)?如果是这样,Javascript sprintf确实是您的答案。Do you mean
sprintf()
's width format specifier (e.g.%20d
)? If so, Javascript sprintf is indeed your answer.我是怎么做的
How I do it