Answers for "node remove punctuation from 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 "node remove punctuation from string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language