How to validate the below Housenumber using jquery Form validation?
1
1b
12
12b
123
123b
1234
1234b
the letter should be always last position , but not required. Please help me to create regular expression.
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.
The following RegExp will do:
^Must start with\d+Any number (\d), at least once (+)[a-zA-Z]*Some letters[a-zA-Z](optional:*)$Must end here