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
Capturing between phrases across multiple lines
Python
Discussion https://www.reddit.com/r/regex/comments/kxtyl6/capturing_between_phrases_across_multiple_lines/ https://www.reddit.com/user/Pauley0/
Submitted by
Pauley0
-
4 years ago
1
ParsingAmazonInvoice
PCRE2 (PHP >=7.3)
Goes through a Plain text derived from a PDF capturing the order number, the items, the order and ship dated and the costs.
Submitted by
anonymous
-
4 years ago
0
Variable Variance Formula
PCRE2 (PHP >=7.3)
Variable Variance Formula This is parsing an Alteryx variance formula to show the versatility of re-writing expressions on the fly in your programs for dynamic repeatability, i.e. field names don't matter, and you never have to re-write the same variance formula again!
Submitted by
Chris Kusek
-
4 years ago
0
Test
ECMAScript (JavaScript)
Haiz
Submitted by
anonymous
-
4 years ago
(Last modified a year ago)
1
sim ou não
Java 8
expressão regular que só aceita s para sim e n para não
Submitted by
José Airton Neto
-
4 years ago
1
Identify lines on an invoice
ECMAScript (JavaScript)
it identifies lines in an invoice
Submitted by
Vladox
-
4 years ago
1
Validacion de palabras con acento
ECMAScript (JavaScript)
Valida letras y palabras con acento
Submitted by
anonymous
-
4 years ago
1
python 3 executable regex
PCRE2 (PHP >=7.3)
give then names of various executables filter out ones that run python3+
Submitted by
anonymous
-
4 years ago
0
Getting Parts of URL
PCRE2 (PHP >=7.3)
https://stackoverflow.com/questions/27745/getting-parts-of-a-url-regex
Submitted by
anonymous
-
4 years ago
0
Match URL or URI strings
ECMAScript (JavaScript)
Reference: https://stackoverflow.com/a/34669019/369727
Submitted by
https://danlevy.net/
-
4 years ago
1
Signed numbers with optional decimal part (comma or dot)
PCRE2 (PHP >=7.3)
Signed numbers with optional decimal part (comma or dot)
Submitted by
ImAlbi57
-
4 years ago
1
Sınıfları Tek Tek seçme
Java 8
za
Submitted by
anonymous
-
4 years ago
0
Trailing dot removal after number sequence
ECMAScript (JavaScript)
The capture group returns only a number with a dot if it has decimal digits, otherwise it is treated as an integer. 1.1 => 1.1 1\. => 1
Submitted by
Stefa168
-
4 years ago
0
日志解析
PCRE2 (PHP >=7.3)
日志解析
Submitted by
vito
-
4 years ago
0
email address
ECMAScript (JavaScript)
email address regex
Submitted by
anonymous
-
4 years ago
0
Lookbehind
ECMAScript (JavaScript)
Example of how to pull a particular piece of the URL
Submitted by
DATA_GATA
-
4 years ago
0
"zoom" follow bots
PCRE2 (PHP >=7.3)
this is for finding all of the "zoom" follow bots on twitch
Submitted by
Math
-
4 years ago
0
Niledutch voyage regex
Python
s
Submitted by
anonymous
-
4 years ago
0
Validate XML
PCRE2 (PHP >=7.3)
Validate XML
Submitted by
anonymous
-
4 years ago
0
v1.colName, v2.colName ==> or decode( v1.colName, v2.colName, 1, 0) = 0
PCRE2 (PHP >=7.3)
For Oracle DB, as it doesn't consider null != informed DATE, and considers null != null. For the WHERE clause. = 0 to get differences = 1 to get "sameness"...
Submitted by
R. Moreno
-
4 years ago
1
...
227
228
229
230
231
...
900
Community Library Entry
0
Regular Expression
Python
r"
(
\d
*
?
)
[
\s
-
]
*
(
\d
+
)
\s
*
/
\s
*
(
\d
+
)
"
Open regex in editor
Description
mixed or simple fraction with whitespace, optional dash as separator
Submitted by
anonymous
-
8 years ago