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,760 community submitted regex patterns...
0
replace go-get request and send to other script
PCRE2 (PHP >=7.3)
how to implement this in htaccess???
Submitted by
anonymous
-
4 years ago
0
LTWS-Komm-2-0
PCRE2 (PHP >=7.3)
Test
Submitted by
LTWS
-
4 years ago
0
Git Branch Model (Jira)
PCRE2 (PHP >=7.3)
no description available
Submitted by
Juicybox
-
4 years ago
0
OBJ file face vertex and normals
PCRE2 (PHP >=7.3)
vn (-?[0-9. ]+){3}|v (-?[0-9. ]+){3}|f ([0-9. \/]+){3}
Submitted by
anonymous
-
4 years ago
0
Cadena de inicio con varias opciones
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
StrongPassword: 1 uppercase, 1 lower case, 1 num, 1 \W, & at least 8 char
PCRE2 (PHP >=7.3)
no description available
Submitted by
Bri Baldwin
-
4 years ago
0
GROK to split log file name by dots
PCRE2 (PHP >=7.3)
Use Filebeat and split log filenames in Logstash into separate fields: `grok { match => "[log[path]", "(?\w+)\.(?[a-zA-Z-]+)\.(?[a-zA-Z-]+)"] }` use filenames like...
Submitted by
SeparateReality
-
4 years ago
0
Teachers expiry date 19022021
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
-2
From conf table to hive table
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Name (First, Last) or (Last, First)
PCRE2 (PHP >=7.3)
Useful for checking comma separated full names
Submitted by
Bryan Luu
-
4 years ago
0
ChristEl
PCRE2 (PHP >=7.3)
Christ Elektronic -> long version
Submitted by
Jan Alexander
-
4 years ago
0
Credit Guard version2
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Credit Guard API
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Clou v1
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
ivrstudio BRs
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Hex colours
PCRE2 (PHP >=7.3)
no description available
Submitted by
Mark Cooper
-
4 years ago
0
transaction_lazypay
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
#67135
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
username
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
-2
LinuxOSVersion
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
...
133
134
135
136
137
138
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