Answers for ""How can I strip all punctuation from a string""

3

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 ""How can I strip all punctuation from a string""

Code answers related to "Javascript"

Browse Popular Code Answers by Language