gpt4 book ai didi

c# - 如何用不同的数字替换每个字符串匹配项?

转载 作者:行者123 更新时间:2023-11-30 19:25:58 24 4
gpt4 key购买 nike

我正在尝试将每个 替换为 --[[RANDOMNUMBER and textbox1 Text]],但是如何为每个替换选择一个新数字,所以它不是总是 241848 之类的?

Random random = new Random();
string replacing = " --[[" + random.Next() + textBox1.Text + "]] ";
string output = richTextBox1.Text.Replace(" ", replacing);

最佳答案

使用Regex.Replace(String, String, MatchEvaluator)反而。它需要一个 MatchEvaluator回调函数,您可以在其中提取下一个随机数:

Random random = new Random();
string output = Regex.Replace(richTextBox1.Text, " ", (match) =>
string.Format(" --[[{0}{1}]] ", random.Next(), textBox1.Text));

例如:

Random random = new Random();
string output = Regex.Replace("this is a test", " ", (match) =>
string.Format(" --[[{0}{1}]] ", random.Next(), "sample"));

上面的示例输出:

this --[[1283057197sample]] is --[[689040621sample]] a --[[1778328590sample]] test

关于c# - 如何用不同的数字替换每个字符串匹配项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25851885/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com