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
PasswordState Catchall
PCRE (PHP <7.3)
Catchall regex parser for PasswordState Dev Area
Submitted by
anonymous
-
4 years ago
1
Heartbeat Successful
PCRE (PHP <7.3)
Successful Heartbeat regex parser for PasswordState Dev Area
Submitted by
anonymous
-
4 years ago
1
No permitir loop con sql
PCRE (PHP <7.3)
((LOOP\s+AT\s+\w\s+INTO\s+\w(.?)\s+)((INSERT|DELETE|UPDATE|MODIFY)\s+(\w\.?\?\s+)(FROM\s+\w\.\s*)?(ENDLOOP\.)))
Submitted by
anonymous
-
4 years ago
1
years old
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Date Regex yyyy-mm-dd with leap year
PCRE (PHP <7.3)
/((20)[0-9]{2}-|1[02])-|12|3[01]))|((20)[0-9]{2}-|11)-|12|30))|((20)[0-9]{2}--|1[0-9]|2[0-8]))|((((20)(04|08|2468|13579))|2000)-[-]29)/g
Submitted by
anonymous
-
4 years ago
1
Find multiple consecutive occurrences of identical digits in a number
PCRE (PHP <7.3)
Example: Find the digit that repeats three times in a row in "451999277". Regex: "(\d)\1\1" (\d) - capture group for the digit and first occurrence \1 - matches one more consecutive occurrence of captured digit
Submitted by
anonymous
-
4 years ago
1
fechas
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
fechasDDMMyyyy
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
DT_LeihNr
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
depchecker variable capture
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
prekladanie pismen znakmi
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
test
Python
no description available
Submitted by
anonymous
-
4 years ago
1
RegEx Teléfono
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
SSN
PCRE (PHP <7.3)
Match full SSN
Submitted by
anonymous
-
4 years ago
1
Separate path string to dir, filename (with extension), file (without extension) and extension. Groups is named
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
1
Cuting Email
PCRE (PHP <7.3)
This little regex is taking an email and creating 2 group first is for before the @ sign and the second is for after the @ sign
Submitted by
anonymous
-
4 years ago
1
Exclude for ufl with OR
ECMAScript (JavaScript)
Exclude certain tags with OR
Submitted by
anonymous
-
4 years ago
1
International Phone Numbers
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
1
Barb's Stream Image Filter
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Phone Number
PCRE (PHP <7.3)
123 456 7890 (123) 456 7890 (123) 456-7890 1234567890 123 456 7890 123 4567890...
Submitted by
anonymous
-
4 years ago
1
...
781
782
783
784
785
...
900
Community Library Entry
1
Regular Expression
ECMAScript (JavaScript)
/
^
(?!
.
*
Tag4
|
.
*
Tag3
)
.
*
\/
Group1
\/
.
*
/
gm
Open regex in editor
Description
Exclude certain tags with OR
Submitted by
anonymous
-
4 years ago