I am using regular expression validation in asp.net and have two regular expressions
First is to prevent special characters
[A-Za-z0-9_]+
Second is to validate min max range
(\s|.){6,15}
I want to merge these tow in one validation expression, please suggest me how I can do it