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-z0-9 ]*$
这将只匹配数字、字母和空格。您将必须根据您的具体情况确定句点、逗号、分号等是否可以接受。请记住,极其严格的规则可能会让用户感到厌烦,最好在服务器端删除任何不需要的字符。
更新:
您可以创建一个像这样 [^] 的否定组,其中不允许插入符号后面的任何字符。请参阅 codeproject.com/Articles/9099/The-30-Minute-Regex-Tutorial,这是一篇关于正则表达式的好文章。