Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 仅用于数字 的正则表达式 用于仅允许正数的 Javascript 正则表达式
如何检查字符串是否仅包含数字并且它不是空字符串?
先感谢您。
匹配 1 个或多个数字,在开头和结尾锚定正则表达式:
/^\d+$/
^
\d
[0-9]
+
$
尝试使用RequiredFieldValidator(不允许该字段为空)而不是 RegularExpressionValidator (允许。)