using REMatchNoCase,
how can you write a Regular Expressions to find in a string the following
S##E## or S##E##E## …
sample
S01E01 or S07E16E17
S and E can be upper or lower case
and there can be spaces, such as
S 01 E01
thank you
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.
here’s the regular expression you’ll need:
“(?i)(^S\d{2}E\d{2}$)|(^S\d{2}E\d{2}E\d{2}$)”