Answers for "filter all punctuation from string javascript"

4

remove punctuation marks from string js

const regex = /[!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~]/g;
const result = WANTED_STRING.replace(regex, '');
Posted by: Guest on June-12-2020

Code answers related to "filter all punctuation from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language