RegEx - 只有空格的20个字符长数字如何

时间:2015-01-16 19:11:36

标签: c# regex

我在正则表达式上完全无用我需要做的是定义一个模式,允许一个至少5个字符的字符串,最多20个字符只允许空格和数字,没有A-Z。

有什么想法吗?

1 个答案:

答案 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