What is below regular expression matching ? Is ‘_’ a wildcard and ‘/’ an or statement ?
I think its matching any ‘m’ character or any ‘r’ character.
'/_m_/_r_'
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 just going to assume that’s a string literal that’s used like this:
In that case the expression matches the literal string
/_m_/_r_. There are no tokens with special meanings in the expression.