I need regex for asp.net application to match an alphanumeric string at least 6 characters long.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m not familiar with ASP.NET. But the regular expression should look like this:
^and$denote the begin and end of the string respectively;[a-zA-Z0-9]describes one single alphanumeric character and{6,}allows six or more repetitions.