Mac@programming.dev to Programming@programming.dev · 9 months agoStrings do too many thingsbuttondown.emailexternal-linkmessage-square38fedilinkarrow-up1100
arrow-up188external-linkStrings do too many thingsbuttondown.emailMac@programming.dev to Programming@programming.dev · 9 months agomessage-square38fedilink
minus-squareFeathercrown@lemmy.worldlinkfedilinkEnglisharrow-up1·edit-29 months agoEDIT: I’M DUMB I THOUGHT YOU MEANT A LITERAL “.” , that regex is indeed correct. Original: This is a valid address: user.name@[IPv6:2001:db8:1ff::a0b:dbd0] Relevant spec: https://www.rfc-editor.org/rfc/rfc5321#section-4.1.3 And you all doubted me… :P Edit: Wait, I also don’t think local-part even needs a “.” in it? [email protected] should be valid as well.
minus-squareJesus_666@feddit.delinkfedilinkarrow-up5·edit-29 months agoAnd it’s matched by .+@.+ as it contains an @. Remember, we’re taking about regular expressions here so .+ means “a sequence of one or more arbitrary characters”. It does not imply that an actual dot is present. (And I overlooked the edit. Oops.)
EDIT: I’M DUMB I THOUGHT YOU MEANT A LITERAL “.” , that regex is indeed correct.
Original:
This is a valid address:
user.name@[IPv6:2001:db8:1ff::a0b:dbd0]
Relevant spec: https://www.rfc-editor.org/rfc/rfc5321#section-4.1.3
And you all doubted me… :P
Edit: Wait, I also don’t think local-part even needs a “.” in it? [email protected] should be valid as well.
And it’s matched by
.+@.+
as it contains an @.Remember, we’re taking about regular expressions here so
.+
means “a sequence of one or more arbitrary characters”. It does not imply that an actual dot is present.(And I overlooked the edit. Oops.)