regex for alphanumeric without space and special characters code example
Example 1: regex allow alphanumeric and special characters
/^[ A-Za-z0-9_@./#&+-]*$/
Example 2: regular expression alphanumeric with spaces java script
/^[a-z\d\-_\s]+$/i
/^[ A-Za-z0-9_@./#&+-]*$/
/^[a-z\d\-_\s]+$/i