regex remove whitespace 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, '');
//..
Example 3: regular expression remove spaces
trim unnecessary whitespace