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 18,000 community submitted regex patterns...
1
Rust Phone Number
Rust
not fully featured, but simple.
Submitted by
Jakersnell
-
a year ago
1
Discord Bot Token
ECMAScript (JavaScript)
JS/TS regex for token validation.
Submitted by
anonymous
-
a year ago
1
Roblox Account Cookie RegExp
ECMAScript (JavaScript)
A regex to match against Roblox cookies. Two captures; the first is the warning text; the second is the cookie itself.
Submitted by
anonymous
-
a year ago
1
OpenWeather API Key Regex
ECMAScript (JavaScript)
A simple regex to match API keys for OpenWeather map. Matches 32 hexadecimal character strings.
Submitted by
anonymous
-
a year ago
1
Kafka loki parser
Golang
Kafka loki parser
Submitted by
anonymous
-
a year ago
1
Get Markdown Tables
PCRE2 (PHP >=7.3)
Get a Match for every table in a markdown file.
Submitted by
Matthias König
-
a year ago
1
Get Markdown Table Row
PCRE2 (PHP >=7.3)
Get the whole row except the header delimiter
Submitted by
Matthias König
-
a year ago
1
Extract phone number and email address from string
PCRE2 (PHP >=7.3)
Extract the phone numbers and email addresses from a string
Submitted by
Mukesh Jangid
-
a year ago
1
Get all table from sql query string | 从SQL查询语句中获取所有表名
PCRE2 (PHP >=7.3)
Get all table from sql query string | 从SQL查询语句中获取所有表名。 WelineFramework PHP8 。
Submitted by
Aiweline/秋枫雁飞
-
a year ago
1
get Markdown image link and alt
PCRE2 (PHP >=7.3)
get image's link and alt in Markdown
Submitted by
fgt1t5y
-
a year ago
1
Simple URL validation
.NET 7.0 (C#)
Validates protocol, sub-domain, domain, and top-level domain. No port number and query string parameters validation is made.
Submitted by
anonymous
-
a year ago
1
Regex, find almost all text between html tags, for laravel translation
PCRE2 (PHP >=7.3)
Regex, find almost all text between html tags, for laravel translation
Submitted by
anonymous
-
a year ago
1
Match URLs
PCRE2 (PHP >=7.3)
Matches most of the URLs I through at it. Did not find any ULR that it doesn't match yet.
Submitted by
Dashrath Sharma
-
a year ago
1
Gregorian Date pattern.
PCRE2 (PHP >=7.3)
Matches Gregorian Date Pattern Completed Challenge from Codewars
Submitted by
Dashrath Sharma
-
a year ago
1
ip address
PCRE2 (PHP >=7.3)
ip
Submitted by
Giorgio
-
a year ago
1
Regex ejemplo grafana01
PCRE2 (PHP >=7.3)
validacion de regex
Submitted by
Edson Rueda
-
a year ago
1
Match T-SQL view definition
PCRE2 (PHP >=7.3)
This regex matches the Transact SQL statement for selecting the database and creating a view.
Submitted by
anonymous
-
a year ago
1
match php tag
PCRE2 (PHP >=7.3)
match php tag
Submitted by
Shun Shun
-
a year ago
(Last modified a year ago)
1
Matches All the even numbers
PCRE2 (PHP >=7.3)
Matches all the even numbers from a given input.
Submitted by
Dashrath Sharma
-
a year ago
1
Matches All the Odd Numbers
PCRE2 (PHP >=7.3)
Matches All the Odd Numbers
Submitted by
Dashrath Sharma
-
a year ago
1
...
820
821
822
823
824
...
900
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