Hello, I know it's my fault and it is not complicated but I cannot find the answer by myself so I beg you to help me build this RegEx.
I'm trying to avoid users to enter more than one email address by line, so I'd like to limit the "@" occurrences to only 1 and also check there are not commas (,)....
Here's a simplified version of the RegEx I'm already using to check the input....
\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b
How could I introduced a section to check there are not (@,) on the last part ?
Thanks in advance