我在正则表达式上完全无用我需要做的是定义一个模式,允许一个至少5个字符的字符串,最多20个字符只允许空格和数字,没有A-Z。
有什么想法吗?
答案 0 :(得分:4)
您可以使用以下正则表达式:
@"^[\d ]{5,20}$"
说明:
^ # the beginning of the string
[\d ]{5,20} # any character of: digits (0-9), ' ' (between 5 and 20 times)
$ # before an optional \n, and the end of the string