所以我有数字和单词的字符串,例如:
1283677/10, this is my string, bla bla
我只想采用序列号:1283677/10
这就是我的尝试:
Match match = Regex.Match(text, @"\d{8}(/\d{1,2})?");
目前返回空。
答案 0 :(得分:4)
斜线前部件中有7位数字。所以修复很简单:
Match match = Regex.Match(text, @"\d{7}(/\d{1,2})?");