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...
1
學位英文簡稱
PCRE2 (PHP >=7.3)
按照縮寫慣例 A.A.A A.A.A. A.A. A.A.A./A.A.A. ...
Submitted by
stone
-
3 years ago
1
UK fixed and mobile phones
PCRE2 (PHP >=7.3)
Will match all fixed and mobile phone numbers with 9 or 10 digit NSN Resource used: https://en.wikipedia.org/wiki/Telephone_numbers_in_the_United_Kingdom
Submitted by
Octav
-
3 years ago
1
email-tec
PCRE2 (PHP >=7.3)
mesa
Submitted by
anonymous
-
3 years ago
1
Book of Jude
PCRE2 (PHP >=7.3)
Searches for expressions containing biblically accurate references for the book of Jude.
Submitted by
anonymous
-
3 years ago
1
Pokemon Go Discord - friend codes
PCRE2 (PHP >=7.3)
A regex to parse codes from a discord server
Submitted by
EagleBirdman
-
3 years ago
(Last modified 3 years ago)
1
2
PCRE2 (PHP >=7.3)
2
Submitted by
anonymous
-
3 years ago
1
Gitlab - Branch name
PCRE2 (PHP >=7.3)
Branch name for Gitlab's Push Rules
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
1
Gitlab - Commit message
PCRE2 (PHP >=7.3)
Commit message for Gitlab's Push Rules
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
1
aws-arn-parser
PCRE2 (PHP >=7.3)
this helps in parsing aws arn's
Submitted by
anonymous
-
3 years ago
1
Markdown checkboxes
PCRE2 (PHP >=7.3)
Match checkboxes that haven't been checked and are not followed by a footnote or crossed out text
Submitted by
heygarrett.com
-
3 years ago
1
find http urls in data-full-url attribute
PCRE2 (PHP >=7.3)
This parses http url's from the data-full-url attribute of a block of code
Submitted by
Kelvin Spencer
-
3 years ago
1
One or more spaces
PCRE2 (PHP >=7.3)
Find one or more spaces
Submitted by
anonymous
-
3 years ago
1
Nombres en mayusculas
PCRE2 (PHP >=7.3)
Nombres en mayúsculas Permite filtrar palabras de nombres con mayúsculas y tildes. Incluye la ñ para Latinoamérica.
Submitted by
macorreag
-
3 years ago
1
Email obfuscation
PCRE2 (PHP >=7.3)
An expression that obfuscates with * following this rule: @. Example: Input: eagles.willys@willbethebest.co.uk...
Submitted by
Ernesto Janebro
-
3 years ago
1
nginx - all subdomain except "api, panel and ..."
PCRE2 (PHP >=7.3)
is used for nginx nameserver regex. pass all except some subdomains.
Submitted by
Mahdad
-
3 years ago
1
find img without alt
PCRE2 (PHP >=7.3)
okok
Submitted by
anonymous
-
3 years ago
1
Match the start of a link.
PCRE2 (PHP >=7.3)
https:// http:// https://\/\/ https:\/\/\/\/\/\ https://\/\/ ...
Submitted by
anonymous
-
3 years ago
1
Check special character except alpha_num
PCRE2 (PHP >=7.3)
Check special character except alpha_num
Submitted by
anonymous
-
3 years ago
1
Validate Float
PCRE2 (PHP >=7.3)
Non scientific float numbers validator
Submitted by
Tanmay Chakrabarty - cse.tanmay@gmail.com
-
3 years ago
1
hdfilmcehennemi ana filmler
PCRE2 (PHP >=7.3)
nothing
Submitted by
no one
-
3 years ago
1
...
5
6
7
8
9
...
142
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