我想使用JavaScript从字符串中删除除空格以外的所有特殊字符。
例如, abc's test#s 应输出为 abcs tests。
abc's test#s
abcs tests
您应该使用带有单个正则表达式的字符串替换功能。假设使用特殊字符,您的意思不是字母,这是一种解决方案:
const str = "abc's test#s"; console.log(str.replace(/[^a-zA-Z ]/g, ""));