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...
1
Date and time capturer
PCRE (PHP <7.3)
Works for the Julian calendar, dates between 0000-01-01 and 9999-12-31. Includes my birth date in the 4th example.
Submitted by
luis140219 on GitHub
-
9 years ago
1
Parser
ECMAScript (JavaScript)
Need everything inside this as separate variable :)
Submitted by
anonymous
-
9 years ago
1
URL
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
Convert PHP var to array
PCRE (PHP <7.3)
I use this regex to quickly convert the class' variables into a string which is usable with the "function" array. I copy-paste the varialbe name and use this regex. Useful to convert all your variable and put it in the magic function __sleep(). After it, you can delete the variables you don't want.
Submitted by
anonymous
-
9 years ago
1
Window Spacer type
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Long slovak date with the "dd. mmmm yyy" format
Python
Match a slovak date following the "dd. mmmm yyy" format.
Submitted by
Tantale
-
9 years ago
1
Bulgarian date "dd mmmm yyyy" format
Python
Parse a bulgarian date following the "dd mmmm yyyy" format.
Submitted by
Tantale
-
9 years ago
0
Finnsih date with the "dd mmmm yyyy" format
Python
Parse a Finnish date with de "dd. mmmm yyyy" or "dd.mm.yyyy" format.
Submitted by
Tantale
-
9 years ago
1
Regexp haus
PCRE (PHP <7.3)
Ejemplo para parsear direcciones de Haus
Submitted by
Leo
-
9 years ago
0
Remove double-slash comments
Python
This regex removes double-slash comments while avoiding anything between 'quotes' or "double quotes".
Submitted by
jlacroix
-
9 years ago
1
Regex
PCRE (PHP <7.3)
Test
Submitted by
anonymous
-
9 years ago
-2
Test email
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
http://stackoverflow.com/questions/30405364
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
Improved RegEx101 ID Grabber
PCRE (PHP <7.3)
Grabs the ID and revision from the URL.
Submitted by
RF
-
9 years ago
1
extract values inside <![CDATA[...]]
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Wyrażenie sprawdzające wiek od 0 do 200
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Thai Name match
PCRE (PHP <7.3)
no description available
Submitted by
itpcc
-
9 years ago
0
html tags with exclusions
PCRE (PHP <7.3)
Matches any text starts with ""; Tag exclusions described in first non-capturing group (can be removed); Tag name will be captured by group #1;
Submitted by
Pavel Savkin aka nhaizere
-
9 years ago
1
number separator positions
ECMAScript (JavaScript)
finds the positions in a number to be replaced with a thousands separator, e.g. 12345 => 12`345
Submitted by
anonymous
-
9 years ago
1
t4
ECMAScript (JavaScript)
43t
Submitted by
34t
-
9 years ago
1
...
99
100
101
102
103
...
900
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
^
[
1
]
(
[
123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz
]
*
)
$
/
Open regex in editor
Description
Checks if a Bitcoin Address is in valid Base 58 format
Submitted by
Rider Adkins - rideradkins@gmail.com
-
9 years ago