Answers for "remove all non-alphanumeric characters (punctuation spaces and symbols) javascript"

5

remove non alphanumeric characters javascript

input.replace(/\W/g, '') //doesnt include underscores


input.replace(/[^0-9a-z]/gi, '') //removes underscores too
Posted by: Guest on June-01-2020

Code answers related to "remove all non-alphanumeric characters (punctuation spaces and symbols) javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language