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 2,840 community submitted regex patterns...
0
calculator expressions
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
search input parsing for ccg database
PCRE2 (PHP >=7.3)
catches member no eg L 791a & separates mType and submember letter or catches name in last-name-first format or name plus a general search string lile 'and city is Bakersfield'
Submitted by
anonymous
-
4 years ago
0
Fin de phrase sans espace
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
US/Canada Zip if at end of line
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
docker ps -> firewall
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Sagitta - LTEPIC
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
AOC 2020 day 18
PCRE2 (PHP >=7.3)
no description available
Submitted by
Alan Nevill
-
4 years ago
0
Escaped Character Finder
PCRE2 (PHP >=7.3)
Flavor: PCRE2 Finds escaped characters. No matter how many \ are present, it will always match either \\\. or \. (where . is the character).
Submitted by
Grayson Spidle
-
4 years ago
0
URL
PCRE2 (PHP >=7.3)
This pattern can detect URLs.
Submitted by
anonymous
-
4 years ago
0
Email
PCRE2 (PHP >=7.3)
no description available
Submitted by
AiAbdrahim
-
4 years ago
(Last modified 4 years ago)
0
Email
PCRE2 (PHP >=7.3)
A valid Email
Submitted by
AiAbdrahim
-
4 years ago
0
get first number from string
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
get main content if has :
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Minify HTML
PCRE2 (PHP >=7.3)
Remove Whitespace Remove Comment
Submitted by
Habibi Mustafa
-
4 years ago
0
cisco command
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Aplayer Icons Regex
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
6 digit Sort Code without dashes
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
ReName_01_
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
atleast one alphabet and only +_-@ specials
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
9 digit mid IMB
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
...
5
6
7
8
9
...
142
Community Library Entry
1
Regular Expression
Rust
r"
^
(?:
(
(?:
bool
|
char
|
str
)
|
(?:
[
fiu
]
(?:
32
|
64
)
)
|
(?:
[
iu
]
(?:
8
|
16
|
128
|
size
)
)
)
|
(
_
*
[
A
-
Z
]
[
a
-
zA
-
Z0
-
9_
]
*
)
)
$
"
xgm
Open regex in editor
Description
Matches built-in primitives and identifiers with casing conventionally used for type/constant names.
Submitted by
Neel Yadav
-
a year ago