regex to allow space in javascript code example
Example 1: regex space javascript
var str = "Is this all there is?";
var patt1 = /\s/g;
Example 2: javascript regex only letters and spaces
//regex expression:
var reg_name_lastname = /^[a-zA-Z\s]*$/;
//Validation to the user_name input field
if(!reg_name_lastname.test($('#user_name').val())){ //
alert("Correct your First Name: only letters and spaces.");
valid = false;
}