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...
0
不能包含字母
ECMAScript (JavaScript)
不能包含字母
Submitted by
anonymous
-
5 years ago
0
cisco show run interface
PCRE (PHP <7.3)
This regex fetches interface ID along with its ip address and description if configured otherwise blank
Submitted by
anonymous
-
5 years ago
0
Float representation
Python
All float representations that can be consumed by strtod() (string to double function in c) Compatible with flex/bison
Submitted by
anonymous
-
5 years ago
0
phone regex validation
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Domain validation regex suitable for user input
Golang
This regexp can be used to validate domain names in Golang. While it cannot enforce the 253 character limit (with optional trailing period not included) that can be easily done with a len(domain) <= 253 check. This can be used as-is in other languages, even with RE2 regex engine. Non-capturing grou...
Submitted by
anonymous
-
5 years ago
0
find including multiline
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
URL
ECMAScript (JavaScript)
https://regex101.com/r/VC5MsA/4
Submitted by
anonymous
-
5 years ago
0
CSB34 Account header
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Get parent folder and file name from full path
PCRE (PHP <7.3)
This expr will get the parent folder and file name from a full path eg: c:\folder1\folder2\folder3\file1.txt returns folder3\file1.txt
Submitted by
anonymous
-
5 years ago
0
SF_KAFKA_CONNECTOR
PCRE (PHP <7.3)
Used for parsing logs of snowflake kafka connector
Submitted by
anonymous
-
5 years ago
0
Zabbix
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
spark to scala
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
names_college_google_meet
PCRE (PHP <7.3)
Google meet names list
Submitted by
anonymous
-
5 years ago
0
ORIGIN_ALERT_NORMAL
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
bold family
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
address dot
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Number
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Get lines not commented with #
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
(Last modified 3 years ago)
0
Extract the actual sub-clauses numbers referred in the cross reference
Python
From the full expression of sub clause or clause referred, it extracts the actual numbers and returns the list of them.
Submitted by
anonymous
-
5 years ago
0
Subparagraph
Python
Searches whether a string of cross references contains the sub paragraph part or not.
Submitted by
anonymous
-
5 years ago
1
...
657
658
659
660
661
...
900
Community Library Entry
0
Regular Expression
Python
r"
^
(?:
(?:
[
Ss
]
ub
)?
(?:
-
)?
(?:
paragraph
)?
(?:
s
)?
(?:
\s
*
\(
[
a
-
z
]
\)
)
(?:
,
\s
*
(?:
\s
*
\(
[
a
-
z
]
\)
)?
)*
(?:
\s
*
(?:
[
,&
]
|
and
)
\s
+
?
(?:
\s
*
\(
[
a
-
z
]
\)
+
)?
)?
(?:
(?:
\s
*
to
)*
(?:
\s
*
\(
[
a
-
z
]
\)
)
)*
(?:
\s
*
of
\s
*
)*
)
"
gm
Open regex in editor
Description
Searches whether a string of cross references contains the sub paragraph part or not.
Submitted by
anonymous
-
5 years ago