Java 中的 .NET String.Format 等效项
我知道 .NET 中有一个函数 string.Format()
Java 中是否有等效版本?
I know there is a function string.Format()
in .NET
Is there an equivalent version available in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,从 Java 1.5 开始,还有
String.format()
支持 Cprintf()
输出。Yes, there is also
String.format()
which supports output ala Cprintf()
since Java 1.5.javadoc
试试这个:
请参阅此问题和解答
Try this:
see this question and answers
也许不完全相等,但 Java 确实有 String.format 它提供了非常相似的功能。您会发现 Java 和 C# 非常相似。
Perhaps not exactly equal but Java does have String.format which provides very similar functionality. You'll find that Java and C# are very similar.