gpt4 book ai didi

c# - 拆分字符串的正则表达式

转载 作者:太空宇宙 更新时间:2023-11-03 22:02:37 24 4
gpt4 key购买 nike

我正在尝试编写一个正则表达式来拆分以下字符串

"17. Entertainment costs,16. Employee morale, health, and welfare costs,3. Test"

进入

17. Entertainment costs
16. Employee morale, health, and welfare costs
3. Test

注意第二个字符串中的逗号。

我在努力

static void Main(string[] args) {
Regex regex = new Regex( ",[1-9]" );
string strSplit = "1.One,2.Test,one,two,three,3.Did it work?";
string[] aCategories = regex.Split( strSplit );
foreach (string strCat in aCategories) {
System.Console.WriteLine( strCat );
}
}

但是#号没有通过

1.One
.Test,one,two,three
.Did it work?

最佳答案

您可以使用 a lookahead (?=...),就像在这个表达式中:

@",(?=\s*\d+\.)"

如果您不想在 N. 之间留有空格,请删除 \s*

关于c# - 拆分字符串的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9568364/

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