I need regular expression for something like:
abc.xyz (firstname.lastname)
I have tried [a-zA-Z ]*$\.[a-zA-Z ]*$
but it does not work.
Update
My actual requirement is to add user's firstname.lastname in url to get something like:
www.abc.com/simer.pqr/profile
This I have to do for django(python) project. Therefore need regular expression.
For the exact requirement I have posted another question SO question - rewrite django url