javascript 过滤中文汉字和 过滤中文汉字和符号的方法
javascript 过滤中文汉字和 过滤中文汉字和中文符号的方法
过滤中文汉字
var hebingdatastr="无法为“
var reg = /[\u4e00-\u9fa5]/g; hebingdatastr = hebingdatastr.replace(reg, "");
过滤汉字和中文符号
var hebingdatastr="ef啦啦,。。d28"; var reg = /[^\x00-\xff]/g; hebingdatastr = hebingdatastr.replace(reg, ""); alert(hebingdatastr);
如果遇到什么不懂的地方直接关注公众号留言(本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须在文章页面给出原文连接,否则保留追究法律责任的权利。)
作者:newmiracle
出处:https://www.cnblogs.com/newmiracle/