regex match letters and space code example
Example 1: only letters and spaces regex
/^[a-zA-Z\s]*$/g
Example 2: regex for letters and spaces
/* Note this works with the onkeyup function in html with js */
function lettersandSpacesOnly(input){
var regexs = /[^a-z ]*$/gmi;
input.value = input.value.replace(regexs, "");
}
Example 3: regular expression search for any character until Space
/^[a-zA-Z-]*/
Creator:Zenonymous