How to keep only small letters and numbers and remove other characters from string in Node.js

1 Answer

0 votes
let s = 'n5q1-0/RQ@a[9[fp#5K$$cCK^6htMNPam1vlWhJy';
 
s = s.replace(/[^a-z0-9]+/g, "");
 
console.log(s);
 
 
 
/*
run:
 
n5q10a9fp5c6htam1vlhy
 
*/

 



answered Mar 26 by avibootz
...