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,020 community submitted regex patterns...
1
Get description from metadata GPX file
PCRE2 (PHP >=7.3)
Get description from metadata GPX file
Submitted by
anonymous
-
3 months ago
2
Command line parser
.NET 7.0 (C#)
Supports parameters such as keys and values, also parameters enclosed in quotes.
Submitted by
Pavel Bashkardin
-
3 months ago
(Last modified 3 months ago)
0
test
PCRE2 (PHP >=7.3)
test
Submitted by
anonymous
-
3 months ago
(Last modified 3 months ago)
1
UrlRegex
PCRE2 (PHP >=7.3)
Test for URL regex
Submitted by
anonymous
-
3 months ago
(Last modified 3 months ago)
1
Комментарии функции БСП
Python
Комментарии к функциям 1С
Submitted by
binx@mail.ru
-
3 months ago
1
Common Separated Values
PCRE2 (PHP >=7.3)
Parse common separated value
Submitted by
Iulian Fecioru
-
3 months ago
1
CSV parser (with Quotes) (.NET)
PCRE2 (PHP >=7.3)
parse comma separated values with quotes
Submitted by
Iulian Fecioru
-
3 months ago
1
ObjAction(\s+\=|\=)(\s+\[|\[).*?\;
ECMAScript (JavaScript)
asdad
Submitted by
anonymous
-
3 months ago
(Last modified 3 months ago)
1
search *user=.*
Python
for ansible regex_search in docker envs
Submitted by
anonymous
-
3 months ago
1
Strings with spezified Number
PCRE2 (PHP >=7.3)
Will match strings with the desired number. For example 1234 but not 12345 or 41234. Will ignore leading zeros so 01234 for example will match. Important. Replace 1234 in regex with the actual searched for number
Submitted by
anonymous
-
3 months ago
1
Identification and Extraction of Iranian Mobile Phone Numbers Using Regex (Regular Expression)
PCRE2 (PHP >=7.3)
This regex is designed to identify and extract Iranian mobile phone numbers. By using the pattern ^(0098|\+98|98|0|)(9\d{9}$), this pattern allows you to recognize phone numbers in various formats, including international and local prefixes. This tool is particularly useful for programmers and data ...
Submitted by
Mohammad Mahdi Arbabpouri
-
3 months ago
3
**japanese text** to bold <b>japanese text</b>
PCRE (PHP <7.3)
japanese text to bold japanese text 食べるんだ 食べるんだ
Submitted by
kurokuroshii
-
3 months ago
(Last modified 3 months ago)
1
find first '-'
PCRE2 (PHP >=7.3)
find first '-' for replace other
Submitted by
anonymous
-
3 months ago
1
Domain Splitter (subdomains, domain, directory, current page)
PCRE2 (PHP >=7.3)
To test multiple domains, put a slash (/) at the end of each domain
Submitted by
tnarh
-
3 months ago
(Last modified 3 months ago)
1
Instagram hashtag regex
ECMAScript (JavaScript)
Simple and easy regex to find valid IG hastags in a string
Submitted by
Navanshu Rastogi - Febnik
-
3 months ago
(Last modified 3 months ago)
1
Matching Alphanumeric Strings with Underscores and Dashes
PCRE2 (PHP >=7.3)
techwiki.biz
Submitted by
anonymous
-
3 months ago
1
Matching Variable Names (e.g., JavaScript, Python)
PCRE2 (PHP >=7.3)
tokotips.com
Submitted by
anonymous
-
3 months ago
1
Matching Time in 12-Hour Format
PCRE2 (PHP >=7.3)
thedigitalnest.com
Submitted by
anonymous
-
3 months ago
1
Matching Dates in MM-DD-YYYY Format
PCRE2 (PHP >=7.3)
techwiki.biz
Submitted by
anonymous
-
3 months ago
1
Matching URL Parameters
PCRE2 (PHP >=7.3)
teamangelicvm.com
Submitted by
anonymous
-
3 months ago
1
...
5
6
7
8
9
...
901
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
\s
{2,3}
(
\d
+
)
\|
\s
{8,9}
(
\w
+
)
\|
\s
{3}
(
ON
\s
|
OFF
)
\|
(
\s
+
|
\s
+
\w
+
)
\|
\s
{5}
(
ON
\s
|
OFF
)
\n
|
\s
{3}
(
\d
)
\s
\|
\s
+
(
\w
+
)
\s
+
\|
\s
+
(
ON
\s
|
OFF
)
\|
(
\s
{2}
\n
|
.\w
+
)
|
AC
current
draw
\s
(
\d
)
\:
\s
(
\d
\.
\d
{2}
)
|
Max
detected
\s
(
\d
\.
\d
{2}
)
/
g
Open regex in editor
Description
This Regex will parse the status output of netBooter type internet connected power switches.
Submitted by
anonymous
-
8 years ago