regex add whitespace before punct code example
Example 1: whitespace regex
\s is the regex character for whitespace. It matches spaces, new lines, carriage returns, and tabs.
Example 2: regex to remove spaces
//..
return str.replace(/\s/g, '');
//..