Regular Expressions 101

Sponsors

Library entries

0
pcre

Levi test

no description available
Submitted by anonymous - 8 years ago
1
pcre

keep versions

no description available
Submitted by anonymous - 8 years ago
1
pcre

redaa

no description available
Submitted by anonymous - 8 years ago
1
pcre

File input type validation

no description available
Submitted by Ramkumar Venkatachalam - 8 years ago
1
pcre

match data-reactid

no description available
Submitted by anonymous - 8 years ago
0
pcre

Java poet regex alternative.

no description available
Submitted by anonymous - 8 years ago
1
pcre

Non-prod Application Log Regex

no description available
Submitted by Aditya Bindra - 8 years ago
1
pcre

{1-65536}

12
Submitted by anonymous - 8 years ago
2
pcre

Match <?xml...?>

How to match the first line of a xml document
Submitted by anonymous - 8 years ago
1
pcre

Find only ".config" file names

Will find lines that end with "/*.config"
Submitted by Dee - 8 years ago
-3
pcre

Telephone

Find Telephone
Submitted by Mr.Fail - 8 years ago
1
pcre

Recherche email

Recherche un email
Submitted by G Morelle - 8 years ago

Split address line into street name and house number

Vote

-1

Regular Expression
pcre

/
\A\s* (?: ######################################################################### # Option A: [<Addition to address 1>] <Street name> <House number> # # [<Addition to address 2>] # ######################################################################### (?:(?P<A_Addition_to_address_1>.*?),\s*)? # Addition to address 1 (?:No\.\s*)? (?P<A_Street_name_1>\pN+[a-zA-Z]?(?:\s*[-\/\pP]\s*\pN+[a-zA-Z]?)*) # Street name \s*,?\s* (?P<A_House_number_1>(?:[a-zA-Z]\s*|\pN\pL{2,}\s\pL)\S[^,#]*?(?<!\s)) # House number \s*(?:(?:[,\/]|(?=\#))\s*(?!\s*No\.) (?P<A_Addition_to_address_2>(?!\s).*?))? # Addition to address 2 | ######################################################################### # Option B: [<Addition to address 1>] <House number> <Street name> # # [<Addition to address 2>] # ######################################################################### (?:(?P<B_Addition_to_address_1>.*?),\s*(?=.*[,\/]))? # Addition to address 1 (?!\s*No\.)(?P<B_House_number>\S\s*\S(?:[^,#](?!\b\pN+\s))*?(?<!\s)) # House number \s*[\/,]?\s*(?:\sNo\.)?\s+ (?P<B_Street_name>\pN+\s*-?[a-zA-Z]?(?:\s*[-\/\pP]?\s*\pN+(?:\s*[\-a-zA-Z])?)*|[IVXLCDM]+(?!.*\b\pN+\b))(?<!\s) # Street name \s*(?:(?:[,\/]|(?=\#)|\s)\s*(?!\s*No\.)\s* (?P<B_Addition_to_address_2>(?!\s).*?))? # Addition to address 2 ) \s*\Z
/
x

Description

Loading markdown...
Submitted by Andre Wisplinghoff - 8 years ago