C#:正则表达式中间有数字和斜线

时间:2017-12-06 15:47:02

标签: c# regex

所以我有数字和单词的字符串,例如:

1283677/10, this is my string, bla bla

我只想采用序列号:1283677/10

这就是我的尝试:

Match match = Regex.Match(text, @"\d{8}(/\d{1,2})?");

目前返回空。

1 个答案:

答案 0 :(得分:4)

斜线前部件中有7位数字。所以修复很简单:

Match match = Regex.Match(text, @"\d{7}(/\d{1,2})?");