当前位置:编程学习 > JS >>

js正则表达式去除字符串中的特殊字符 (包含空格)

去除特殊字符~!@#$^-&*()=|{}':;',\[].<>/?~!@#¥……&*()——|{}【】';:""'。,、?
需要可以自行调用

//去除特殊字符~!@#$^-&*()=|{}':;',\[].<>/?~!@#¥……&*()——|{}【】';:""'。,、?
export function trimSpecial(string) {

  //替换字符串中的所有特殊字符(包含空格)
  if(string!= ""){
    const pattern=/[`~!@#$^\-&*()=|{}':;',\\\[\]\.<>\/?~!@#¥……&*()——|{}【】';:""'。,、?\s]/g;
    string = string.replace(pattern,"");
  }
  return string
}
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,