在javascript 中,如何正确的使用,正则表达式, 过滤特殊字符(非字母表中的字符[a-zA-Z0-9])
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在javascript 中,如何正确的使用,正则表达式, 过滤特殊字符(非字母表中的字符[a-zA-Z0-9])相关的知识,希望对你有一定的参考价值。
1
1
1
在javascript 中,如何正确的使用,正则表达式, 过滤特殊字符(非字母表中的字符[a-zA-Z0-9])
JavaScript 正则表达式:
var reg = /([\(\)\[\]\{\}\^\$\+\,\s\_\:\-\*\?\.\"\‘\|\/\\])/g; str = "0_0 (: /-\ :) 0-0"; var s = str.replace(reg,""); //0000 var l = s.toLowerCase(); document.write(l)) ; //You‘ll need to remove all non-alphanumeric characters
1
1
1
1
1
1
1
1