Answers for "javascript replace all punctuation with space"

3

remove punctuation marks from string js

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

replace multiple spaces with single space javascript

string = string.replace(/\s\s+/g, ' ');
Posted by: Guest on July-19-2020
1

javascript replace multiple spaces with single space

var multiSpacesString="I  have     some big    spaces.";
var singleSpacesString=multiSpacesString.replace(/  +/g, ' ');//"I have some big spaces."
Posted by: Guest on August-02-2019

Code answers related to "javascript replace all punctuation with space"

Code answers related to "Javascript"

Browse Popular Code Answers by Language