enviroCar / enviroCar-app

enviroCar Android Application
https://envirocar.org
GNU General Public License v3.0
89 stars 158 forks source link

Email Regex fails to match hyphen in domain name #654

Closed mvoggu closed 3 years ago

mvoggu commented 3 years ago

f20180564@hyderabad.bits-pilani.ac.in is a valid email address, but the current Regex for email does not allow it because of a hyphen(-) in the domain name

I propose that we follow the regex suggested in https://stackoverflow.com/a/201378

mvoggu commented 3 years ago

@arvindnegi1 as this particular issue can also be fixed by allowing hyphen in the current regex without shifting to the proposed one, I want to know your thoughts on this before submitting a PR

arvindnegi1 commented 3 years ago

@mvoggu Yes you can allow hyphen before the @ part. thanks!