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
For Local To => for(){
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
regex for allowing only certain special characters and also including the alphanumerical characters
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
regex for allowing only certain special characters and also including the alphanumerical characters1
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
match file path.
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Not allow Special Characters in JavaScript
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
x:y => y x
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Add ;
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
How do I not allow special characters, but allow space in regex?
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Function => public static
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
ListOfSourcesSeparatedBySpaces
.NET 7.0 (C#)
A list of sources like accepted by the CSP:frame-ancestors header, plus the keywords of the X-Frame-Options header for some backward compatibility
Submitted by
anonymous
-
5 years ago
(Last modified 7 months ago)
0
TN, get id from url
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
BlueCat Get Authentication Token for API Login
Python
no description available
Submitted by
anonymous
-
5 years ago
0
show interfaces status
Python
no description available
Submitted by
anonymous
-
5 years ago
0
PASSPORT
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Extract IIS Site Name and ID From Web-Binding
PCRE (PHP <7.3)
Extract Site Name and ID from the Web-binding information in the ItemXPath field
Submitted by
anonymous
-
5 years ago
0
If x; => if (x){
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Global => public static
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Field => public
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
email
Python
no description available
Submitted by
anonymous
-
5 years ago
0
if (x=x) => if (x==x)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
...
646
647
648
649
650
...
900
Community Library Entry
0
Regular Expression
Python
r"
(?:
(?P<Port>
\w
+
(?:
(?:
[
\/
]
\d
)?
)+
(?:
(?:
[
.
]
\d
)?
)+
)
\s
+
(?P<Name>
[
\w
_
\/
]
+
)?
\s
+
(?P<Status>
\w
+
)
\s
+
(?P<Vlan>
\w
+
)
\s
+
(?P<Duplex>
\w
+
)
\s
+
(?P<Speed>
\w
+
)
\s
+
(?P<Type>
[
\w
\-
]
+
)
(?:
\s
+
)?
)
"
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
5 years ago