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 6,140 community submitted regex patterns...
0
calculator expressions
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
derinlik
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
match id in the middle of a url
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
grades
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Match URLs
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
res id and distance
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Ex3Tema1
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Ex2Tema1
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Ex1Tema1
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
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
Name DVC
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 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
searchingLight
ECMAScript (JavaScript)
/%A-Z+%*\|[0-9]+\|[0-9]+(\.[0-9])?\$/g
Submitted by
dp
-
4 years ago
0
Converts markdown linked text to HTML linked text.
ECMAScript (JavaScript)
no description available
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
Opinionated email validation
ECMAScript (JavaScript)
opinionated email validation based on https://en.wikipedia.org/wiki/Email_address. i have excluded some email patterns that don't seem to be common
Submitted by
Pavel Dominguez
-
4 years ago
(Last modified 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
1
...
175
176
177
178
179
...
307
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
(?<!
^
)
(?=
[
A
-
Z
]
[
a
-
z
]
)
|
(?<=
[
a
-
z
]
)
(?=
[
A
-
Z
]
)
"
g
Open regex in editor
Description
Splits camel-case string and preserves acronyms
Submitted by
Tyler S.
-
a year ago