how to check string that it should not contain special chars in regex code example
Example: regular expression should not contain special character
//Author: Mohammad Arman Khan
//Regular Expression should not contain Special Characters
var regex = /^[A-Za-z0-9 ]+$/;