Can anybody point it out?
/^([a-zA-Z]+)//\d|M|H/RegExp.$1
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.
1.
/^([a-zA-Z]+)/2.
/\d|M|H/which, as @Tim suggested in the comments, could better be written as:
[\dMH]3.
RegExp.$1is probably not a regex (at least, it can’t match anything). It’s likely a language construct.