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...
0
Date parser
PCRE2 (PHP >=7.3)
Some invalid dates are matched. For those, add control using java when parsed if number is greater than limit.
Submitted by
anonymous
-
3 years ago
0
Float
PCRE2 (PHP >=7.3)
Save float point number.
Submitted by
anonymous
-
3 years ago
0
Parsed PGN
ECMAScript (JavaScript)
In my use case, I had to parse PGN this way for my book opening apps. Transformed result later { 1: { black: 'c6'...
Submitted by
Muhammad Surga Savero
-
3 years ago
0
The entire world and more
PCRE2 (PHP >=7.3)
matches only uppercase consonants really sure.
Submitted by
Doomject-Supreme
-
3 years ago
0
add interfaces to ef models
PCRE (PHP <7.3)
Use this to add interfaces to ef models using vs replace all with regex
Submitted by
anonymous
-
3 years ago
0
OmegaT exercise: separators in figures (en -> es)
Java 8
Replace thousand and decimal separators
Submitted by
anonymous
-
3 years ago
0
OmegaT exercises
Java 8
OmegaT exercises
Submitted by
msoutopico
-
3 years ago
0
Migros_brackets
PCRE2 (PHP >=7.3)
Migros brackets
Submitted by
anonymous
-
3 years ago
0
JS Project Folder Name Match
Python
JS Project Folder Name Match
Submitted by
Yew Meng
-
3 years ago
0
Passwort-Validierung
PCRE2 (PHP >=7.3)
Eine einfache RegEx zur Validierung von Passwörtern mit folgenden Regeln: mind. eine Ziffer mind. ein Kleinbuchstabe mind. ein Großbuchstabe mind. ein Sonderzeichen (!?-_.:,;+*~#“'´`\\={}()\/&%$§)...
Submitted by
Ruben Winkler - Der ultimative Regular Expression Komplettkurs
-
3 years ago
(Last modified 3 years ago)
0
Zeichen (Literal Characters)
PCRE2 (PHP >=7.3)
Beispiel zur Lektion "Zeichen (Literal Characters)".
Submitted by
Ruben Winkler - Der ultimative Regular Expression Komplettkurs
-
3 years ago
0
Links in HTML
PCRE (PHP <7.3)
Example href="https://example.com"
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
Vezetéknév
PCRE2 (PHP >=7.3)
Ellenőrzi a magyar ékezetes, kötőjeles, szóközzel vagy ponttal elválasztott neveket.
Submitted by
anonymous
-
3 years ago
0
Keresztnév ellenőrzés
PCRE2 (PHP >=7.3)
RegEx, ami a magyar ékezetes keresztneveket ellenőrzi.
Submitted by
anonymous
-
3 years ago
0
Wie arbeiten RegEx?
PCRE2 (PHP >=7.3)
Beispiel zur Lektion "Wie arbeiten RegEx?".
Submitted by
Ruben Winkler - Der ultimative Regular Expression Komplettkurs
-
3 years ago
0
匹配敏感词
Python
用"第一|质量|最"这些敏感词来寻找并匹配字符串
Submitted by
anonymous
-
3 years ago
0
IBAN Search
PCRE2 (PHP >=7.3)
with white space and capitals
Submitted by
anonymous
-
3 years ago
0
Date YYYY-MM-DD | YYYY/MM/DD | YYYY.MM.DD (ex. 2021-12-09) (leading zeros for month and day)
Python
For Dates formatted YYYY-MM-DD separated by Dot (.) Dash(-) or Slash(/) like (2021-04-08) with Zeros for single digit Month and Day.
Submitted by
QuickRegEx
-
3 years ago
0
Date YYYY-M-D | YYYY/M/D | YYYY.M.D (ex. 2021-9-2) (without leading zeros for month and day)
Python
For Dates formatted YYYY-M-D separated by Dot (.) Dash(-) or Slash(/) like (2021-9-2) without leading Zeros for single digit Month and Day.
Submitted by
QuickRegEx
-
3 years ago
0
Date MM-DD-YYYY | MM/DD/YYYY | MM.DD.YYYY (ex. 09-02-2021) (leading zeros for month and day)
Python
For Dates formatted MM-DD-YYYY separated by Dot (.) Dash(-) or Slash(/) like (09-02-2021) with leading Zeros for single digit Month and Day.
Submitted by
QuickRegEx
-
3 years ago
1
...
750
751
752
753
754
...
900
Community Library Entry
-2
Regular Expression
Java 8
"
(?=
\b\d
{8}
\b
)
(?:
(?:
9
?
8
?
7
?
6
?
5
?
4
?
3
?
2
?
1
?
0
?
)
|
(?:
0
?
1
?
2
?
3
?
4
?
5
?
6
?
7
?
8
?
9
?
)
)
(?<=
\d
{8}
)
"
gm
Open regex in editor
Description
This regex is to match Ascending or descending order of 8 digit number
Submitted by
anonymous
-
a year ago