Home >Backend Development >PHP Tutorial >求PHP验证注册用户名格式正则表达式

求PHP验证注册用户名格式正则表达式

WBOY
WBOYOriginal
2016-06-06 20:31:381481browse

可以输入中文,字母,数字,下划线,其他都不可以,求大神!

回复内容:

可以输入中文,字母,数字,下划线,其他都不可以,求大神!

中文,字母,数字,下划线,4-16个字符

<code>/[\x4E00-\x9FA5\w]{4,16}/
</code>

\x4E00-\x9FA5 代表unicode的中文,不是全部,只是中日韩统一表意文字这个区间,想要更完善的 可以参考这里 http://thoughtfly.iteye.com/blog/977478

\w 涵盖了 字母、数字、下划线

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