<pre name="code" class="javascript">/***
* 去掉字符串中的特殊字符
*/
var excludeSpecial = function(s) {
// 去掉转义字符
s = s.replace(/[\'\"\\\/\b\f\n\r\t]/g, '');
// 去掉特殊字符
s = s.replace(/[\@\#\$\%\^\&\*\{\}\:\"\L\<\>\? ]/);
return s;
}; function main(){
var s = "He is\tcalled 'Johnny'";;
console.log(s);
console.log(excludeSpecial(s));
console.log(s);
};
main();
相关文章
- 10-29C++中int转为char 以及int 转为string和string 转int和空格分隔字符串
- 10-29Python2和Python3中的字符串编码问题解决
- 10-29c – 如何从QStringList中删除空字符串和空字符串?
- 10-29c – 生成的加密字符串在PyCrypto和Crypto中的大小不同
- 10-29CodeGo.net>如何在NUnit测试用例中传递字符串和字典?
- 10-29python关键字、转义符和字符串格式化
- 10-29ES6中字符串新增的padStart()和padEnd()方法(字符串填充)
- 10-29加载模块时,Python文档字符串和注释是否存储在内存中?
- 10-29python 中str字符串 和list列表基本操作总结
- 10-29在LoadRunner中查找和替换字符串