Ruby's Email Address Regexp
github.com
Ruby's Email Address Regexp
1–10 of 69 posts
Re: Ruby's Email Address Regexp
#2Having been down that rabbit hole before myself, I have to admit, this email regex is tamer than I expected it to be.
Re: Ruby's Email Address Regexp
#3Re: Ruby's Email Address Regexp
#4The best email regex just checks for an @ symbol with something before it, and something after it. Anything more complex is a waste of time.
The ultimate email validation is just trying to send an email to the address and confirming with a code/link.
Re: Ruby's Email Address Regexp
#5The best email regex just checks for an @ symbol with something before it, and something after it. Anything more complex is a waste of time.
Re: Ruby's Email Address Regexp
#6The best email regex just checks for an @ symbol with something before it, and something after it. Anything more complex is a waste of time.
Re: Ruby's Email Address Regexp
#7Re: Ruby's Email Address Regexp
#8Re: Ruby's Email Address Regexp
#9The best email regex just checks for an @ symbol with something before it, and something after it. Anything more complex is a waste of time.