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,020 community submitted regex patterns...
0
Godot REPL Plugin - (String Literal) Load Expression
ECMAScript (JavaScript)
Loose matching of load statements, capturing the path parameter in the path capture group. load('./scene.tscn') load('path/to/resource.tres') load("path/to/file.gd") `
Submitted by
disk0__
-
3 years ago
1
streets with one or more names with unicode characters in python
Python
streets with one or more names with unicode characters in python
Submitted by
Stanicio
-
3 years ago
0
Domain Matching
Python
Avoids false positives
Submitted by
Sly
-
3 years ago
(Last modified 3 years ago)
0
JSON string
Python
Can process a JSON string
Submitted by
Mass
-
3 years ago
(Last modified 3 years ago)
0
Strip Azure Devops merge commit for fit changelog
PCRE (PHP <7.3)
Using the right headerPattern that can correctly parse either the merge message or the commit message I was able to workaround the issue
Submitted by
anonymous
-
3 years ago
0
Parse number and street from street address
ECMAScript (JavaScript)
Uses ECMAScript to parse the number and street from a street address.
Submitted by
Wiktor Stribiżew
-
3 years ago
0
All
PCRE2 (PHP >=7.3)
all
Submitted by
anonymous
-
3 years ago
0
Repeated numbers
PCRE2 (PHP >=7.3)
Checks if there are repeated numbers in a number. Ex. 1223 ==> Has the number 2 repeated
Submitted by
maPer77
-
3 years ago
0
English/Hebrew Text (no numbers)
ECMAScript (JavaScript)
Detects English & Hebrew text, but no numbers. Number detection could easily be added, as well as many other configurations. The main point here is that \p{Hebrew} is a very pretty way to include Hebrew characters.
Submitted by
MegaSpaceHamlet
-
3 years ago
0
Extract American Phone Number
PCRE2 (PHP >=7.3)
Will verify a number that matches the pattern: [US International Code], [3-digit Area Code], [3 digits], [4 digits] And will return matches for all the digits together as a string (useful for href="tel:{number"), and each component of the number (including US International Code
Submitted by
MegaSpaceHamlet
-
3 years ago
0
slovak and czech phone numbers
Python
Slovak and czech phone numbers. 0908312334 +421908332314 004219126559874 +420987654321...
Submitted by
Adrián
-
3 years ago
0
C######
PCRE2 (PHP >=7.3)
get C with numbers string
Submitted by
Didier
-
3 years ago
1
匹配中英文括号
Java 8
可以用来替换企业名称中的中英文括号 eg: 阿里巴巴(中国)股份 阿里巴巴(中国)股份
Submitted by
tuan_luo
-
3 years ago
0
Numbers, units, and tolerances
PCRE2 (PHP >=7.3)
This regular expression matches a quantity and tolerances, if they exist.
Submitted by
nessalc
-
3 years ago
(Last modified 3 years ago)
0
assoc_ff_solucao
PCRE (PHP <7.3)
identifies ff in assoc
Submitted by
anonymous
-
3 years ago
0
Search Engine Marketing
PCRE2 (PHP >=7.3)
Yurrr
Submitted by
anonymous
-
3 years ago
0
Any letter finder
Python
This regex, by me, finds any letter, and may include: Emojis: 🥺 Miscallenious symbols and letters: Şâď Kaomojis: (T෴T ^^) And more: …
Submitted by
Rix The Regex Maker
-
3 years ago
0
Episodes Files
Python
#Episodes Files this pattern split the series episodes files to extract data
Submitted by
anonymous
-
3 years ago
0
Extraction of Boolean Status by Object ID (JSON)
PCRE2 (PHP >=7.3)
Extraction of boolean status by object ID from JSON string
Submitted by
Michael S.
-
3 years ago
0
Mobile Phone Number with code
ECMAScript (JavaScript)
Admite un numero de telefono con su codigo de area
Submitted by
macorreag
-
3 years ago
1
...
160
161
162
163
164
...
901
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(?<time>
\d
{4}
-
\d
{1,2}
-
\d
{1,2}
\d
{1,2}
:
\d
{1,2}
:
\d
{1,2}
)
\[
(?<thread>
.
*
)
\]
(?<level>
[^
\s
]
+
)
(?<message>
.
*
)
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
6 years ago