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

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

WBOY
WBOYOriginal
2016-06-06 20:28:421208Durchsuche

字符串 只能包含 中英文,数字,'-','_' 的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 正则匹配中文,去看看吧,作者很花了些工夫在这上面。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn