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,040 community submitted regex patterns...
0
trimming whitespaces from the beginning and from the end
Python
trimming whitespaces from the beginning and from the end
Submitted by
anonymous
-
2 years ago
0
Pick uuidValue from jSON payload
Java 8
.
Submitted by
jeevan
-
2 years ago
0
auto-gpt :- capture thoughts
PCRE2 (PHP >=7.3)
capture thoughts of auto-gpt log
Submitted by
anonymous
-
2 years ago
0
auto-gpt capture command
Python
auto-gpt capture command
Submitted by
anonymous
-
2 years ago
0
tacacs legacy server definition: sentence and parts
Python
This query extract the entire tacacs legacy configuration by servers and divide its parts on groups
Submitted by
anonymous
-
2 years ago
0
Extract structure from dates
Python
1-12 / 2022
Submitted by
anonymous
-
2 years ago
0
GitVersion major-version-bump-message
PCRE2 (PHP >=7.3)
GitVersion major-version-bump-message
Submitted by
anonymous
-
2 years ago
0
GitVersion minor-version-bump-message
PCRE2 (PHP >=7.3)
GitVersion minor-version-bump-message
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
GitVersion patch-version-bump-message
PCRE2 (PHP >=7.3)
GitVersion patch-version-bump-message
Submitted by
anonymous
-
2 years ago
0
date description amount
PCRE2 (PHP >=7.3)
-
Submitted by
Me
-
2 years ago
0
Email address supporting plus addressing and multiple subdomains.
ECMAScript (JavaScript)
This expression follows the rules displayed at https://knowledge.validity.com/hc/en-us/articles/220560587-What-are-the-rules-for-email-address-syntax-. Note that their rules DO NOT exactly match those of the applicable RFC 5322 (sections 3.2.3 and 3.4.1) and RFC 5321, but rather supports a pattern ...
Submitted by
Eric Bewley
-
2 years ago
0
name vietnamese
PCRE2 (PHP >=7.3)
kiểm tra tên tiếng việt
Submitted by
anonymous
-
2 years ago
0
Extract email from - Add "email"
ECMAScript (JavaScript)
Replace Add "xyz@abc.com" with xyz@abc.com
Submitted by
anonymous
-
2 years ago
0
Filter for Linux block devices
PCRE2 (PHP >=7.3)
Filters out all block devices (excluding hd* or vd*)
Submitted by
Louwrentius
-
2 years ago
0
Group separate name and version tag
PCRE2 (PHP >=7.3)
Here, ^ matches the start of the string, ([\w\.]+) matches one or more word characters or dots and captures it in a group, \s* matches any whitespace between the name and version, \d[\d\.\-]* matches the version number (which starts with a digit and may contain digits, dots or hyphens), and finally ...
Submitted by
anonymous
-
2 years ago
0
hungarian address pattern
PCRE2 (PHP >=7.3)
This pattern can match hungarian address parts.
Submitted by
Steven Cash
-
2 years ago
0
autogpt-system-command-parse
Python
autogpt-system-command-parse
Submitted by
anonymous
-
2 years ago
0
auto-gpt-THOUGHTS block
Python
auto-gpt-THOUGHTS block
Submitted by
anonymous
-
2 years ago
0
auto-gpt-parse next-action
Python
auto-gpt-parse next-action
Submitted by
anonymous
-
2 years ago
0
autogpt-parse next-action
Python
autogpt-parse next-action
Submitted by
anonymous
-
2 years ago
1
...
886
887
888
889
890
...
902
Community Library Entry
0
Regular Expression
Python
r"
(?P<EngDate>
[
a
-
zA
-
Z
]
+
[
\s
\.
]
)?
(?P<Date0>
(?:
\d
{1,2}
(?=
[
\s
,./-
]
)
|
\d
{4}
)
)
(?:
\.
(?=
\
)
)?
(?(2)
,
?
)
年
?
(?P<d_sep>
[
\s
,./-
]
\
?
)?
(?:
(?P<Date1>
[^
\W\d
]
+
|
\d
{1,2}
)
(?(3)
\.
?
(?P=d_sep)
)
)?
月
?
(?P<Date2>
\d
{4}
|
\d
{1,2}
)?
(?P=d_sep)
?
(?=
[
日T
\s
]
)
"
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
4 years ago