How to remove all special characters from a string in Node.js

1 Answer

0 votes
let s = '2a1 -0/R@ a9f***node#4K$$;;cCK ^htPa  m8jsvlWhJ';
 
s = s.replace(/[^a-zA-Z0-9 ]/g, "");
 
console.log(s);
 
 
 
 
 
/*
run:
 
2a1 0R a9fnode4KcCK htPa  m8jsvlWhJ
 
*/

 



answered May 1, 2022 by avibootz
...