任何人都可以告诉我应该使用哪种模式来跟随字符串格式:
例如:C10_COM
,C1122_ABC etc
。
在c#中Regex.IsMatch()
答案 0 :(得分:3)
试试这个:
^[cC][0-9]{1,4}_.*$
其中:
^ = Start of the line
[cC] = either upper or lowercase c
[0-9]{1,4] = Match a number 1 to 4 times
_ = underscore
.* = Any number of characters
$ = end of line
附录:您没有指定是否允许您在行尾添加零字符。如果没有,请将.*
替换为?*
。