Hi mates,
Really got stuck on this simple regex. Need it to validate a string, that will be a mail without the "@domain.xxx".
It must accomplish the following rules:
- there must be a string (only letters) starting.
- there must be a string (only letters) ending.
- this two strings must be separated by a dot.
- the complete string mustn't contain any numbers or simbols.
I was trying with something like... /^[a-z]+$/^[.]+$/[a-z]+$/i
...but no success.