@cm0002@lemmy.world to Programmer Humor@programming.dev • 3 months agowhat debugging regex feels likelemmy.mlimagemessage-square70fedilinkarrow-up11arrow-down10cross-posted to: programmerhumor@lemmy.ml
arrow-up11arrow-down1imagewhat debugging regex feels likelemmy.ml@cm0002@lemmy.world to Programmer Humor@programming.dev • 3 months agomessage-square70fedilinkcross-posted to: programmerhumor@lemmy.ml
minus-square:3 3: :3 3: :3 3: :3linkfedilink0•3 months agoWhat about "user@not_domain"? It validates but isn’t valid - there’s no domain part, the @ is quoted
minus-squareexulinkfedilinkEnglish0•3 months 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.