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.
有人可以定义一个只允许两个字母“E”和“P”的正则表达式集。
我有一个网络应用程序,其中某些文本区域需要只允许输入这两个字符。
谢谢你。
/^[ep]+$/
而已。
^
[ep]
+
$
如果您还想接受 E 和 P,您可以添加一个i不区分大小写的修饰符:
i
/^[ep]+$/i
在 javascript 中使用:
var testingRegex = /^[ep]+$/i; if (testingRegex.match(myString)) { //Yes, it matches! } else { //Error! }