Answers for "eliminate all punctuation from a number javascript es6"

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 "eliminate all punctuation from a number javascript es6"

Code answers related to "Javascript"

Browse Popular Code Answers by Language