这是示例:
string one = "Test123";
string two = "123Test12345"
我想比较字符串,并使用索引将其替换为字符。 因此,字符串“ two”变成字符串“ one”,将123放在Test123的前面,将45放在Test123的后面。 反正有吗?
答案 0 :(得分:-1)
string outputText = Regex.Match(two, one,RegexOptions.IgnoreCase).Value;
Console.WriteLine(outputText) // "Test123"