I have the following patterns in a URL.
- John.Smith
- John.Smith.1
- John.Al-Smith
- John.al-smith.1
- John.Smith.Al-Caboon
Where the first (.) is mandatory and with at least one character before and after the first (.), the rest of the stuff (the numbers, hyphen, and the second (.)) are optional.
I created the following Regex:
^\w+.\w+-*\w*.?\d*\w*-*\w*
Though it successfully matched all the above patterns, it also matches some undesired patterns like:
- "login" (Without the mandatory first dot)
- "users/john" (with an undesired / and also without the mandatory first dot)
- "1234" (Invalid, the pattern has to start by a character)
What am I doing wrong here?
