所以我有这个字符串[]:
string[] middleXMLTags = {"</Table1><Table2>", "</Table2><Table3>"};
我想用它做这样的事情:
int i = 0;
foreach (regex where it finds the replacement string)
{
response = Regex.Replace(response, "</Table><Table>", middleXMLTags[i]);
i++;
}
response = Regex.Replace(response, "<Table>", <Table1>);
response = Regex.Replace(response, "</Table>", </Table3>);
最终,我只是问是否有可能以某种方式循环 a Regex
,因此能够string
用存储在 a 中的不同值替换 a string[]
。它不一定是一个foreach
循环,我知道这段代码很荒谬,但我把它听出来是为了问最清楚的问题。请评论您对我的任何问题。
感谢所有帮助 =)