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.
我需要一个验证 extjs 中的文本字段的正则表达式。
文本字段应仅接受数字,数字应以8开头
假设 8 本身是一个有效条目,您希望将此属性添加到您的文本字段配置中。
regex: /^8\d*$/
如果 8 无效,则将其替换*为+
*
+
试试8\d+- 它选择数字 8 后跟 0 个或更多小数。
8\d+