我需要将一个字符串中单词的第一个实例替换为另一个字符串。问题在于,被替换的单词有时会在要更改的字符串中多次出现。发生这种情况时,我们只希望替换第一个实例。我该怎么办?
答案 0 :(得分:2)
string s1 = "something replace replace replace replace something";
string s2 = "replace";
string newString=s1;
int index = s1.IndexOf(s2);
if (index > -1)
{
newString = s1.Substring(0, index) + "newWord" + s1.Substring(index + s2.Length);
}
Console.WriteLine(newString);