I\'m currently using this regex ^[A-Z0-9 _]*$ to accept letters, numbers, spaces and underscores. I need to modify it to require at least one number or letter s
^[A-Z0-9 _]*$
This will validate against special characters and leading and trailing spaces:
var strString = "Your String"; strString.match(/^[A-Za-z0-9][A-Za-z0-9 ]\*[A-Za-z0-9]\*$/)