使用c#替换word + xx(未知)值

本文关键字:未知 xx 替换 word 使用 | 更新日期: 2023-09-27 18:12:03

我试图在文件中做替换字符串。我想替换单词和xyz(未知)值。如。我的.java文件包含hellohello01hello03hello07hello09...hello99我想把helloXX替换成helloXX是随机的。如何使用c#实现它?

使用c#替换word + xx(未知)值

最好的方法是使用Regex类

编辑:

        var regex = new Regex(@"hello'd+");
        var original = "hello123";
        var updated = regex.Replace(original, "hello");