I’m trying to use a regular expression to search for a pattern where the string will always be 5 lowercase letters, 2 numbers, and then a lower case p.
Example:
ingja44p
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 / start and end the pattern: “/PATTERN/”
The [a-z]{5} means any lowercase letters a-z for length of 5
The [0-9]{2} means any 2 digits
p means, a “p” 🙂