我有一个字符串,其中可能包含两次“title1”。
例如
server/api/shows?title1=费城总是阳光明媚&title1=糟糕透顶...
我需要将单词“title1”的第二个实例更改为“title2”
我已经知道如何识别字符串中是否有两个字符串实例。
int occCount = Regex.Matches(callingURL, "title1=").Count;
if (occCount > 1)
{
//here's where I need to replace the second "title1" to "title2"
}
我知道我们可能可以在这里使用正则表达式,但我无法在第二个实例上获得替换。谁能帮我一把?