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.
我正在编写一个简单的表单预验证器。我正在寻找一个 PHP 正则表达式来匹配任何不规则符号。也就是说,非拉丁语和非数字字符,以及不包含在正常英语标点符号中的字符(基本上,匹配不在此 ascii 表的第二列到第四列中的字符)。那里有任何正则表达式向导可以帮助我吗?
第二到第四列可以翻译成一个简单的正则表达式:
/[^ -~]/
匹配任何不在空格和波浪号之间的字符。
答案在这里。
长与短。这个PCRE:[^\x00-\x7F]
[^\x00-\x7F]