我想在 C# 中\r\n
只用一个替换任意数量的。\r\n\r\n
对不起,如果这是一个愚蠢的问题,但我是正则表达式的新手。
其实我试过
clearstring = Regex.Replace(clearstring, @"\r\n+", "\r\n\r\n", RegexOptions.Singleline | RegexOptions.Compiled | RegexOptions.ExplicitCapture | RegexOptions.IgnoreCase);
但它没有用,有什么建议吗?我会很感激。