gpt4 book ai didi

c# - 正则表达式匹配 C# 中的单独整数列表

转载 作者:行者123 更新时间:2023-12-02 01:35:04 25 4
gpt4 key购买 nike

我想使用正则表达式匹配逗号分隔的整数列表。我使用了以下模式,但它对我不起作用。

if (!Regex.IsMatch(textBox_ImportRowsList.Text, @"^([0-9]+(,[0-9]+))*"))
{
errorProvider1.SetError(label_ListRowPosttext, "Row Count invalid!");
}

有效输入:

1
1,2
1,4,6,10

无效输入:

1,
1.1
1,A
2,/,1
,1,3

最佳答案

使用这个正则表达式:

^\d+(,\d+)*$

关于c# - 正则表达式匹配 C# 中的单独整数列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11326516/

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