I have a regex which validate emails.
([a-z0-9_\.-]+\@[\da-z\.-]+\.[a-z\.]{2,6})
some emails start with "." "_" "-" and it catches it as a valid. How can I write a regex to start with characters or digits? I have text so anchor ^ doesn't working.
Regards