Home >Backend Development >PHP Tutorial >正则表达式 - 求php正则,有些js正则不能用。

正则表达式 - 求php正则,有些js正则不能用。

WBOY
WBOYOriginal
2016-06-06 20:28:421196browse

字符串 只能包含 中英文,数字,'-','_' 的php正则表达式。 使用preg_match()函数。

回复内容:

字符串 只能包含 中英文,数字,'-','_' 的php正则表达式。 使用preg_match()函数。

我看你主要是想解决匹配中文的问题吧,试试这个

<code class="php">preg_match("/^[\x{4e00}-\x{9fa5}]+$/u", $str)</code>

如果加上英文数字和两个符号

<code class="php">preg_match("/^[\x{4e00}-\x{9fa5}a-zA-Z0-9_\-]+$/u", $str)</code>

参考 php 正则匹配中文,去看看吧,作者很花了些工夫在这上面。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn