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 4,960 community submitted regex patterns...
0
replace date format DD.MM.YY -> YYYY.MM.DD
PCRE2 (PHP >=7.3)
Search: 12) 05.09.08 - xxxxxxxxxx Replace: 2008.09.05 - xxxxxxxxxx (0-9\)\x20)(0-9|0-9-0-9)\.(0-9)\.(0-9) 20$4.$3.$2
Submitted by
DbrmnPhrh
-
2 years ago
0
English Name Regex
PCRE2 (PHP >=7.3)
Match only english characters with numbers, spaces, comma and dots. /[a-z0-9.\-\s]/gmi `
Submitted by
Giorgi Gumburashvili
-
2 years ago
0
stopwordlist
PCRE2 (PHP >=7.3)
stopwordlist
Submitted by
anonymous
-
2 years ago
0
13000000000 (aaa, vvv)
PCRE2 (PHP >=7.3)
test
Submitted by
anonymous
-
2 years ago
0
test
PCRE2 (PHP >=7.3)
test
Submitted by
anonymous
-
2 years ago
0
custom email
.NET 7.0 (C#)
custom email
Submitted by
anonymous
-
2 years ago
0
extract-json-csv
PCRE2 (PHP >=7.3)
eee
Submitted by
anonymous
-
2 years ago
0
IPv6
PCRE2 (PHP >=7.3)
Matches an IPv6 address. Performances are the same as the excellent one from frusty. This regular expression uses pattern repetition (?n) to reduce the length to 191 characters.
Submitted by
Piwi
-
2 years ago
0
Rejex1
PCRE2 (PHP >=7.3)
Preg_match
Submitted by
anonymous
-
2 years ago
0
Bangla word Regex
PCRE2 (PHP >=7.3)
This regex will help to detect Bengali words.
Submitted by
Rudra Sarkar
-
2 years ago
0
MySQL : table structure info
PCRE2 (PHP >=7.3)
MySQL : table structure parser mysql command : SHOW COLUMNS FROM edn_work_order_event
Submitted by
dobri
-
2 years ago
0
(1) Custome, 50 Another Word
PCRE2 (PHP >=7.3)
Some description
Submitted by
anonymous
-
2 years ago
0
SWIG ModuleName
PCRE2 (PHP >=7.3)
indentify the Modulename
Submitted by
anonymous
-
2 years ago
0
number two decimal digit
Python
.
Submitted by
anonymous
-
2 years ago
0
cyrillic month match
PCRE2 (PHP >=7.3)
Соня :3
Submitted by
seocringe
-
2 years ago
0
Numbers only
PCRE2 (PHP >=7.3)
Detect numbers only in entire word each line
Submitted by
sarumie
-
2 years ago
(Last modified 2 years ago)
0
UUID Validator
PCRE2 (PHP >=7.3)
Yup, that's a Universal Unique Identifier alright
Submitted by
anonymous
-
2 years ago
0
7zip file type regex
.NET 7.0 (C#)
header of output from > 7z i
Submitted by
ninmonkey
-
2 years ago
0
Beatiful.ai clean up
PCRE2 (PHP >=7.3)
.
Submitted by
anonymous
-
2 years ago
0
URL Regex
PCRE2 (PHP >=7.3)
URL regex
Submitted by
anonymous
-
2 years ago
1
...
120
121
122
123
124
...
248
Community Library Entry
0
Regular Expression
Python
r"
^\s
{7}
(
[
-A
]
?
\d
+
)
\s
+
(
(
.
|
\n
)*
?
)
\n^\s
{24}
(
[
A
-
Z
]
{0,2}
\d
{3}
(
\.
\d
+
)?
(
\s
(
\w
+
)
)?
)
"
gm
Open regex in editor
Description
Matches entries in a library catalogue.
Submitted by
anonymous
-
a year ago