简体   繁体   English

在JavaScript中使用regexp替换

[英]Using regexp replace in JavaScript

如何在JavaScript中使用replace regex去除句子中不是字母,数字或空格的所有内容?

var string = "here is a sentence with letters and numbers and symbols 123!@#";

 var string = "here is a sentence with letters and numbers and symbols 123!@#"; var x = string.replace(/[^a-zA-Z0-9 ]/g,'') console.log(x) 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM