We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Alternative Matching
Alternative Matching
Sort by
recency
|
163 Discussions
|
Please Login in order to post a comment
var Regex_Pattern = /^(Mr?s|[MDE]r).[a-zA-Z]+$/;
Regex_Pattern = r'^(Mr.|Mrs.|Ms.|Dr.|Er.)[a-zA-Z]+$'
Java 15:
JavaScript:
var Regex_Pattern = /^(Mr|Mrs|Ms|Dr|Er){1}.[a-zA-Z]+$/;
pasess all test cases