我有两个字符串
string str1 = "Hello World !"; // the position of W character is 6
string str2 = "peace";
//...
string result = "Hello peace !"; // str2 is written to str1 from position 6
有没有这样的功能:
string result = str1.Rewrite(str2, 6); // (string, position)
编辑了
这个“Hello World!” 只是一个例子,我不知道这个字符串中是否有“W”字符,我只知道:str1
, str2
, position ( int
)