@cm0002 to Programmer [email protected] • 5 days agowhat debugging regex feels likelemmy.mlimagemessage-square74arrow-up1886arrow-down113
arrow-up1873arrow-down1imagewhat debugging regex feels likelemmy.ml@cm0002 to Programmer [email protected] • 5 days agomessage-square74
minus-square:3 3: :3 3: :3 3: :3linkfedilink5•4 days agoWhat about "user@not_domain"? It validates but isn’t valid - there’s no domain part, the @ is quoted
minus-squareexulinkfedilinkEnglish4•4 days agoThat’s not something you can determine using a regex. “user@com” for example could be a perfectly working email. The right way is to send a verification email in every case.
What about
"user@not_domain"
? It validates but isn’t valid - there’s no domain part, the@
is quotedThat’s not something you can determine using a regex.
“user@com” for example could be a perfectly working email.
The right way is to send a verification email in every case.