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.
我正在尝试使用允许字符、撇号、连字符和通配符(* 和?)的 reg 表达式验证文本框。
我发现^[\p{L} \.'\-]+$哪个应该允许字符、撇号和连字符。我还需要添加什么来接受通配符?
^[\p{L} \.'\-]+$
正则表达式验证:
[A-Za-z'\-*?]+
在方括号内?和 * 不是特殊字符。
如果您需要匹配整个字符串,请执行
^[A-Za-z'\-*?]+$