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
get child configs
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Log error code
Python
no description available
Submitted by
anonymous
-
4 years ago
0
adding international code
Python
no description available
Submitted by
anonymous
-
4 years ago
0
3 voyels word
Python
no description available
Submitted by
anonymous
-
4 years ago
0
substitute python comment
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Detect queries and whitespace before each of them
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
Detect queries and whitespace after each of them
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
google font downloader
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
google font css url
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
PHP Linting - Regex to bring curly brace next to control structure instead than on new line
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Email
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
decode
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
One parentheses
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
GQL statement capturer
Python
no description available
Submitted by
anonymous
-
4 years ago
0
What You Want to match? (Only ") OR CHARECTERS BETWEEN " ????
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
RAMESH IS RAMESH ??
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Autonote.json matching
PCRE (PHP <7.3)
Matches most of the Open Dental autonote.json exports for shifting text around
Submitted by
anonymous
-
4 years ago
0
Detecting Typical Australian Address (Street only)
Python
no description available
Submitted by
anonymous
-
4 years ago
0
positive numbers up to 100
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
m3u parser (bruh)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
...
358
359
360
361
362
...
900
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
^
[
\w
,
]
{3,4}
(?:
(?<jan>
Jan
)
|
(?<feb>
Feb
)
|
(?<mar>
Mar
)
|
(?<apr>
Apr
)
|
(?<may>
May
)
|
(?<jun>
Jun
)
|
(?<jul>
Jul
)
|
(?<aug>
Aug
)
|
(?<sep>
Sep
)
|
(?<oct>
Oct
)
|
(?<nov>
Nov
)
|
(?<dec>
Dec
)
)
(?<day>
\d
+
)
(?<year>
\d
+
)
(?<time>
\d
{1,2}
:
\d\d
:
\d\d
)
.
*
/
gm
Open regex in editor
Description
Transform a date string like: Mon Nov 10 1957 12:34:56 UTC +08:00 into: 11/10/195 12:34:56
Submitted by
Steve Aughnbaugh
-
2 years ago
(Last modified 2 years ago)