gpt4 book ai didi

c# - 仅用一个换行符替换多个换行符

转载 作者:行者123 更新时间:2023-11-30 14:12:59 24 4
gpt4 key购买 nike

我想用 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);

但是没有用,有什么建议吗?我将不胜感激。

最佳答案

尝试

clearstring = Regex.Replace(clearstring, @"(\r\n)+", "\r\n\r\n", RegexOptions.Singleline | RegexOptions.Compiled | RegexOptions.ExplicitCapture | RegexOptions.IgnoreCase);

规则是量词(在您的情况下为加号)仅适用于紧接在前的组或字符类,在您的情况下仅为\n。如果你想包含多个字符或类别,你应该将它们分组在括号中。

关于c# - 仅用一个换行符替换多个换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15676153/

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