GBK编码的中文正则表达式在网上很容易找到。
UTF-8编码正则表达式如下,在C,PYTHON,JAVASCRIPT中通用。
#!/opt/php/bin/php
<?php
$str = "耿鸿豪enginesmart";
if (preg_match("/^[/x{4e00}-/x{9fa5}a-zA-Z0-9]+$/u",$str)) {
print("Success!");
} else {
print("Failure!");
}
?>
GBK编码的中文正则表达式在网上很容易找到。
UTF-8编码正则表达式如下,在C,PYTHON,JAVASCRIPT中通用。
#!/opt/php/bin/php
<?php
$str = "耿鸿豪enginesmart";
if (preg_match("/^[/x{4e00}-/x{9fa5}a-zA-Z0-9]+$/u",$str)) {
print("Success!");
} else {
print("Failure!");
}
?>