判断字符串是否有中文
用的是正则表达式 + UTF-8
/**
* 测试是否有中文, 中文标点测试不出来
*/
function testChinese(str:String):Boolean
{
return / .*[\u4e00 -\u 9fa5] + .*$ / .test(str);
}
» 转载请注明来源:www.litefeel.com » 《判断字符串是否有中文》
» 本文链接地址:https://www.litefeel.com/check-has-chinese-at-string/
» 订阅本站:www.litefeel.com/feed/
» Host on Linode VPS
» 本文链接地址:https://www.litefeel.com/check-has-chinese-at-string/
» 订阅本站:www.litefeel.com/feed/
» Host on Linode VPS