regex match blank space code example
Example 1: regular expression not to allow space in javascript
var regexp = /^\S*$/; // a string consisting only of non-whitespaces
Example 2: whitespace regex
\s is the regex character for whitespace. It matches spaces, new lines, carriage returns, and tabs.