Regular Expressions 101

Library entries

-2
pcre

Ukazka

no description available
Submitted by anonymous - 9 years ago
-2
pcre

failed attempt

no description available
Submitted by DynV - 9 years ago
-2
pcre

A masz!

no description available
Submitted by Ja - 9 years ago
-2
pcre

[A-Z]+[a-z]{1,2}[0-9]*

no description available
Submitted by anonymous - 9 years ago
-2
pcre

Match v4 IP address

no description available
Submitted by Budiony Damyanov - 9 years ago
-2
javascript

Select ID from regex101 URL

no description available
Submitted by Vinay - 9 years ago
-2
pcre

test

no description available
Submitted by anonymous - 9 years ago
-2
pcre

Unicode email sanitising

no description available
Submitted by anonymous - 9 years ago
-2
pcre

French phone number

no description available
Submitted by Benoit Anastay - 9 years ago
-2
pcre

1_aa3

no description available
Submitted by anonymous - 9 years ago
-2
pcre

Sample

no description available
Submitted by anonymous - 9 years ago
-2
pcre

Find multiple XML documents in file

as title says
Submitted by Doro - 9 years ago
-2
javascript

Header `Link` validator

no description available
Submitted by Vaseker - 9 years ago

Matching email addresses per RFC5322

Vote

234

Regular Expression
pcre

/
(?(DEFINE) (?<addr_spec> (?&local_part) @ (?&domain) ) (?<local_part> (?&dot_atom) | (?&quoted_string) | (?&obs_local_part) ) (?<domain> (?&dot_atom) | (?&domain_literal) | (?&obs_domain) ) (?<domain_literal> (?&CFWS)? \[ (?: (?&FWS)? (?&dtext) )* (?&FWS)? \] (?&CFWS)? ) (?<dtext> [\x21-\x5a] | [\x5e-\x7e] | (?&obs_dtext) ) (?<quoted_pair> \\ (?: (?&VCHAR) | (?&WSP) ) | (?&obs_qp) ) (?<dot_atom> (?&CFWS)? (?&dot_atom_text) (?&CFWS)? ) (?<dot_atom_text> (?&atext) (?: \. (?&atext) )* ) (?<atext> [a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+ ) (?<atom> (?&CFWS)? (?&atext) (?&CFWS)? ) (?<word> (?&atom) | (?&quoted_string) ) (?<quoted_string> (?&CFWS)? " (?: (?&FWS)? (?&qcontent) )* (?&FWS)? " (?&CFWS)? ) (?<qcontent> (?&qtext) | (?&quoted_pair) ) (?<qtext> \x21 | [\x23-\x5b] | [\x5d-\x7e] | (?&obs_qtext) ) # comments and whitespace (?<FWS> (?: (?&WSP)* \r\n )? (?&WSP)+ | (?&obs_FWS) ) (?<CFWS> (?: (?&FWS)? (?&comment) )+ (?&FWS)? | (?&FWS) ) (?<comment> \( (?: (?&FWS)? (?&ccontent) )* (?&FWS)? \) ) (?<ccontent> (?&ctext) | (?&quoted_pair) | (?&comment) ) (?<ctext> [\x21-\x27] | [\x2a-\x5b] | [\x5d-\x7e] | (?&obs_ctext) ) # obsolete tokens (?<obs_domain> (?&atom) (?: \. (?&atom) )* ) (?<obs_local_part> (?&word) (?: \. (?&word) )* ) (?<obs_dtext> (?&obs_NO_WS_CTL) | (?&quoted_pair) ) (?<obs_qp> \\ (?: \x00 | (?&obs_NO_WS_CTL) | \n | \r ) ) (?<obs_FWS> (?&WSP)+ (?: \r\n (?&WSP)+ )* ) (?<obs_ctext> (?&obs_NO_WS_CTL) ) (?<obs_qtext> (?&obs_NO_WS_CTL) ) (?<obs_NO_WS_CTL> [\x01-\x08] | \x0b | \x0c | [\x0e-\x1f] | \x7f ) # character class definitions (?<VCHAR> [\x21-\x7E] ) (?<WSP> [ \t] ) ) ^(?&addr_spec)$
/
xmg

Description

Loading markdown...
Submitted by Michael Musson - 10 years ago