We're a place where coders share, stay up-to-date and grow their careers.
Pay attention, the first example is wrong: /.+@.com/ matches something like "name@xcom". A better example (still not covering a lot of peculiar cases) could be /.+@.+\.com/
/.+@.com/
/.+@.+\.com/
Thank you for pointing this mistake. I guess many people do not read thoroughly.
Pay attention, the first example is wrong:
/.+@.com/
matches something like "name@xcom". A better example (still not covering a lot of peculiar cases) could be/.+@.+\.com/
Thank you for pointing this mistake. I guess many people do not read thoroughly.