Question: How would you write a regex that matches the full name of anyone whose last name is Doe? A re.compile(r'[A-Z][a-z]*sDoe') B re.compile(r'[a-z]*sDoe') C re.compile(r'[A-Z][a-z]*s(Doe)?') D
How would you write a regex that matches the full name of anyone whose last name is Doe?
| A | re.compile(r'[A-Z][a-z]*\sDoe') | |
| B | re.compile(r'[a-z]*\sDoe') | |
| C | re.compile(r'[A-Z][a-z]*\s(Doe)?') | |
| D | re.compile(r'[Abc]*\sDoe') |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
