我有这个代码来格式化字符串
string s = "the first number is: {0} and the last is: {1} ";
int first = 2, last = 5;
string f = String.Format(s, first, last);
我想从first
最终格式化的last
字符串(f
f
first
last
s
有一种方法是这样的:
string.Split()
使用(艰难和糟糕的方式)提取它们
但我认为.Net 中有一个简单的解决方案,但我不知道这是什么。
谁能告诉我简单的方法是什么?