c# – 正则表达式替换 – 如何在不同字符串的多个位置替换相同的模式?

前端之家收集整理的这篇文章主要介绍了c# – 正则表达式替换 – 如何在不同字符串的多个位置替换相同的模式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个特殊的问题..!

我有一个字符串,在多个步骤中具有一些常量值.例如,考虑以下刺痛.

string tmpStr = "Hello _tmp_ how is _tmp_ this possible _tmp_ in C#...?"

现在我想用存储在数组中的值替换字符串中的每个tmp,首先tmp保存数组[0],第二个tmp保存数组[1],依此类推……

知道如何实现这一点……?我使用C#2.0

解决方法

这个怎么样:
string input = "Hello _tmp_ how is _tmp_ this possible _tmp_ in C#...?";
string[] array = { "value1","value2","value3" };

Regex rx = new Regex(@"\b_tmp_\b");

if (rx.Matches(input).Count <= array.Length)
{
    int index = 0;
    string result = rx.Replace(input,m => array[index++]);
    Console.WriteLine(result);
}

您需要确保找到的匹配数永远不会超过数组的长度,如上所示.

编辑:响应评论,这可以很容易地使用C#2.0,用这个替换lambda:

string result = rx.Replace(input,delegate(Match m) { return array[index++]; });
原文链接:https://www.f2er.com/csharp/243038.html

猜你在找的C#相关文章