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.
首先请原谅我的英语语法。无论如何,我正在尝试创建一个包含字母数字字符的正则表达式,包括空格、逗号、句号、感叹号和问号,但不允许使用其他字符和符号。
这个正则表达式会起作用吗?
'/[^a-zA-Z\s,!?]$'
非常感谢你的帮助
试试这个/^[a-zA-Z0-9\s\.,!?]*$/
/^[a-zA-Z0-9\s\.,!?]*$/