Regex用于搜索和替换c#字符串中的字符
本文关键字:字符串 字符 替换 用于 搜索 Regex | 更新日期: 2023-09-27 18:08:48
我试图在字符串中搜索逗号,然后"delete"它(我猜是用"代替了它)。我感兴趣的是一般的解法。regex有替换方法吗?
为什么不使用普通的string.Replace()?
var result = str.Replace(",", string.Empty);
如果您仍想使用正则表达式,请尝试此
static void Main(string[] args)
{
Regex regex = new Regex(@"',");
Console.WriteLine(regex.Replace("sample, text", string.Empty));
Console.ReadLine();
}