allow space regex javascript code example
Example 1: regular expression not to allow space in javascript
var regexp = /^\S*$/; // a string consisting only of non-whitespaces
Example 2: regex space javascript
var str = "Is this all there is?";
var patt1 = /\s/g;