Javascript Regex: Replacing multiple words with a space for all occurrences? -
How do I change the space of double quotes and single quotes with a space with javascript regex?
var stripped = mystring.replace (/ ['' '] / g, "") ;
How do I change the space of double quotes and single quotes with a space with javascript regex?
var stripped = mystring.replace (/ ['' '] / g, "") ;
Comments
Post a Comment