regex for alphanumeric and space code example
Example 1: how to get only alphanumeric and whitespace in string regex
/[A-Za-z\d\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, "");
}