.NET中的String.Format(可能只是VB.NET)将{0},{1},…转换为确定的String,例如:
Dim St As String = "Test: {0},{1}" Console.WriteLine(String.Format(St,"Text1","Text2"))
我试图在Google和StackOverflows中搜索,但它们都返回数字字符串格式.
解决方法
其他建议肯定是好的,但更多的是
printf
及其谱系的风格,这是Java的最新增加.您发布的代码看起来受到
MessageFormat
的启发.
String format = "Test: {0},{1}" System.out.println(MessageFormat.format(format,"Text2"))
我不确定’Return:声明在做什么.