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.
我正在验证电子邮件表单,对于姓名输入,我想确保用户没有在字段中输入标点符号或数字。只是字母 az 大写和小写。
这似乎不起作用:
/(?![\._])\p{P}|[0-9]/g
你可以使用
/[a-zA-Z]/g
匹配有效名称
希望这可以帮助
为什么不直接匹配/[a-zA-Z]/g呢?