gpt4 book ai didi

c# - 重叠正则表达式替换

转载 作者:太空宇宙 更新时间:2023-11-03 19:15:34 25 4
gpt4 key购买 nike

我有一种情况,逗号在不应该被删除的时候被删除,例如,

John 3:16,18,4:2 becomes John 3:16 18 4:2

我想把逗号放回去,我想我可以用

string strRegex = @"(\d+)\s+(\d+)";
RegexOptions myRegexOptions = RegexOptions.None;
Regex myRegex = new Regex(strRegex, myRegexOptions);
string strTargetString = @"John 3:16 17 4:3";
string strReplace = @"$1,$2";

return myRegex.Replace(strTargetString, strReplace);

但这只是给了我

John 3:16,18 4:2

我错过了什么?

最佳答案

使用 lookbehind and lookahead所以数字不是你匹配的一部分:

string strRegex = @"(?<=\d)\s+(?=\d)";
...
string strReplace = @",";

关于c# - 重叠正则表达式替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17075922/

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