Please enable JavaScript to use this web application.
Regular
Expressions
101
Social
Donate
Info
Regex Editor
Community Patterns
Account
Regex Quiz
Settings
Order By
Most Recent
Most upvotes
Most downvotes
Highest Score
Lowest Score
Filter by Flavor
PCRE2 (PHP >=7.3)
PCRE (PHP <7.3)
ECMAScript (JavaScript)
Python
Golang
Java 8
.NET 7.0 (C#)
Rust
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 18,000 community submitted regex patterns...
1
Select Path into an URL
PCRE (PHP <7.3)
no description available
Submitted by
alcaamado
-
9 years ago
1
Drupal regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Password secure but flexable
PCRE (PHP <7.3)
Must have at leat one number, at leat one capital letter, at least one lower case letter. Also you can have special characters !.@$%&+=-? if you want for extra security. This is not manditory. Change (?=.[a-z\!.@$%&*+=\-\?]) to (?=.[\!.@$%&+=\-\_?]) to make thees special characters manditory. No ...
Submitted by
strik009
-
9 years ago
1
find used npm modules
PCRE (PHP <7.3)
no description available
Submitted by
KhodeN
-
9 years ago
1
Italian Fiscal Code [Codice fiscale]
ECMAScript (JavaScript)
Codice fiscale italiano
Submitted by
Italo
-
9 years ago
1
Code Space Remover
PCRE (PHP <7.3)
Mathces unnecessary spaces in computer programs.
Submitted by
Loovjo
-
9 years ago
1
Basic usage for tel ESA
ECMAScript (JavaScript)
Is a simple regex for compare tel number of El Salvador (not use +503 or iquals)
Submitted by
nayosx
-
9 years ago
1
salary
ECMAScript (JavaScript)
Chinese salary input
Submitted by
taijia
-
9 years ago
1
redirect old links
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
convert text to link
PCRE (PHP <7.3)
convert link of filtered text to html tag link
Submitted by
Masoud tavakolian
-
9 years ago
1
Mi detector de urls
PCRE (PHP <7.3)
Es mi intento por detectar urls
Submitted by
Oscar David Díaz Fortaleché
-
9 years ago
1
Tefefono El Salvador (fijo y celular)
ECMAScript (JavaScript)
Un pequeño regex para validar si el telefono pertenece a El Salvador
Submitted by
nayosx
-
9 years ago
1
ipv4 IP addressses, capturing private ranges
PCRE (PHP <7.3)
Capture 0.0.0.0-255.255.255.255 IP address octets. Capture private ranges, such as '169.254.' and '10.'
Submitted by
OnlineCop
-
9 years ago
1
decimal number validation
PCRE (PHP <7.3)
accepts 1; 1.1; 112315.23135
Submitted by
MS
-
9 years ago
1
print_build_data
Python
URL to get build data from the api
Submitted by
anonymous
-
9 years ago
1
Cisco FastEthernet Ports 1-12
PCRE (PHP <7.3)
This regex will grab all Cisco-style FastEthernet ports from 1 to 12
Submitted by
@LookLittleJohn
-
9 years ago
1
Cisco FastEthernet Ports 13-24
PCRE (PHP <7.3)
This regex captures Cisco-style FastEthernet ports 13-24
Submitted by
@looklittlejohn
-
9 years ago
1
YES!
PCRE (PHP <7.3)
no description available
Submitted by
Nayan
-
9 years ago
1
Pure-Ftpd Log Action
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
DOS ASM Ops
Python
Matches ops of DOS ASM
Submitted by
anonymous
-
9 years ago
1
...
611
612
613
614
615
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
"geo":
\{
"type":"Point","coordinates":
\[
(?P<latitude>
[^
,
\]\}
]
+
)
,
(?P<longitude>
[
\d
\.\-
]
+
)
/
Open regex in editor
Description
This extracts latitude and longitude from a Tweet pulled through the public API.
Submitted by
Ed Fullman
-
8 years ago