I am preparing a regular expression:
[a-zA-Z0-9._-]{20}
So far I am with the previous part of the "@" of an email and I am trying to do something like this:
[a-zA-Z0-9._-]{"*"-20}
Where "*" appears, I try to put it to not have a minimum size, but a maximum
How could you mount the expression?
The idea is to use it later to do this:
E-mail in various characters (letters, numbers, periods or dashes, high or low, 20 maximum) followed by arroba, letters (20 maximum), period (1), and 2 or 3 letters.