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
www-urls without protocol and not in <a>-tag
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
href harmonisation
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
function identifier with arguments
PCRE (PHP <7.3)
matches a function signature and extracts the function name and the contents of the parenthesis as match groups
Submitted by
anonymous
-
6 years ago
0
URI start with
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Client ID matcher w/ nickname allowance
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
i.imgur.com Link matcher
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Pull text-align value from HTML markup
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Phone Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Remove anything but float and integer
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 11
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 11 My solution
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 10
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 10 My solution
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex for comments.
PCRE (PHP <7.3)
"Comments" surrounded by /* and / without an inner */ unless it is surrounded by "". ex. /a"/"b/ is in the language.
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 9
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 9 My solution
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 8
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 7
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 6
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 4
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
458
459
460
461
462
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(
(?<syslog_pri>
(
^
\<
\d
*
\>
)
)
|
(
^
(?<facility>
[^
\.
]
*
)
\.
(?<severity>
[^
\s
]
*
)
)
)?
\s
*
(?:
%{SYSLOGTIMESTAMP:timestamp}
|
%{TIMESTAMP_ISO8601:timestamp}
)
%{SYSLOGHOST:iporhost}
(?<messgae>
.
*
)
/
g
Open regex in editor
Description
no description available
Submitted by
anonymous
-
9 years ago