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,040 community submitted regex patterns...
1
Show Identifying Regex
PCRE (PHP <7.3)
To sort my tv shows
Submitted by
Robert
-
9 years ago
1
Japanese smileys
PCRE (PHP <7.3)
Find smileys
Submitted by
CycyX
-
9 years ago
1
Smileys
PCRE (PHP <7.3)
Find regular smileys
Submitted by
CycyX
-
9 years ago
1
mm/yy
PCRE (PHP <7.3)
no description available
Submitted by
Federico
-
9 years ago
3
POST OFFICE BOX
PCRE (PHP <7.3)
no description available
Submitted by
jmweekes
-
9 years ago
1
Atividade Extra
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
IP addr
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Isolate Javascript variable name
PCRE (PHP <7.3)
Used to isolate the variable name of a JavaScript variable. Works event if there aren't spaces between the variable and the equals sign.
Submitted by
Keith Mitchell
-
9 years ago
5
Variable name of code
PCRE (PHP <7.3)
To get a variable name from a source code: The variable name is before the '=' (equal sign) This is the way to detect. Problem: Only 1 variable can get from 1 line. Unfortunately, this can get variable between after "//" and before ";" too. I made this for fake script debugger. Just get variable f...
Submitted by
Setsuna
-
9 years ago
1
geolocation coordinates string
PCRE (PHP <7.3)
Matches a geolocation coordinates string consisting of latitude and longitude separated by a comma with up to 7 decimal places precision.
Submitted by
Steve Piercy
-
9 years ago
1
Group of Consonants 3 or more
ECMAScript (JavaScript)
Look for a group of consonants with 3 or more in succession.
Submitted by
Jeff Tomlinson, Prime Data
-
9 years ago
1
all
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Resolve-AutomationModel-Params
PCRE (PHP <7.3)
Used to extract parameter data from an actiontasks properties which would be located in the automation model. Requires the string to be URL UnEscaped.
Submitted by
jesse.puente
-
9 years ago
1
placeholders
PCRE (PHP <7.3)
no description available
Submitted by
kelvi
-
9 years ago
1
Password validation
PCRE (PHP <7.3)
Check if the string has a minimum of 6 characters, at least 1 upper case char, at least 1 lower case char and at least 1 number with no spaces.
Submitted by
Webchef.de
-
9 years ago
-3
Clean empty tags from HTML tags incl. tags containing space(s)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
html-link-2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
html-link
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
Messages.properties language file validator
ECMAScript (JavaScript)
no description available
Submitted by
spec4u.net
-
9 years ago
2
mask the credit card number
PCRE (PHP <7.3)
no description available
Submitted by
vj
-
9 years ago
1
...
802
803
804
805
806
...
902
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
(?<=
^
[
aeiou
]
)
/
Open regex in editor
Description
Separator for a vowel start string
Submitted by
FerreiraR
-
3 years ago