How to keep only big letters and numbers and remove other characters from string in JavaScript

1 Answer

0 votes
s = '2a1-0/R@a9f#4K$$cC3K^htPam8vlQWhJ'

s = s.replace(/[^A-Z0-9]+/g, "");

console.log(s);



/*
run:

210R94KC3KP8QWJ

*/

 



answered Jun 14, 2020 by avibootz
...