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.
我在正则表达式方面非常糟糕,需要知道如何确定选择中的值是 1 还是 2,而不是 0。
共有三个选项,只有 2 个有效。
这将用作 jQuery 验证引擎插件的验证正则表达式。
提前致谢。
如果您的意思是匹配文字字符串“1”和“2”,
/^[12]$/
就足够了。
最简单的方法可能只是检查==,但如果你真的想使用正则表达式:
==
var regex = /^[12]$/;