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 5,120 community submitted regex patterns...
1
Inverse Match
Python
inverse match letters, numbers, and underscores
Submitted by
anonymous
-
10 years ago
1
REGEX
Python
no description available
Submitted by
anonymous
-
10 years ago
0
Negative lookbehind
Python
no description available
Submitted by
anonymous
-
10 years ago
0
Almost working sites regex
Python
no description available
Submitted by
anonymous
-
10 years ago
1
Removes C-like comments
Python
no description available
Submitted by
Gabriel Olivério
-
10 years ago
3
Twitch URL Regex
Python
Can grab all kinds of valid twitch URLs.
Submitted by
Mio
-
10 years ago
4
Complete imgur link regex
Python
This regex grabs all kinds of imgur links and groups them in meaningful names aswell. This way you have full flow-control in your python-scripts.
Submitted by
Mio
-
10 years ago
1
Pinguino regex
Python
Used for replace words from .pdl
Submitted by
anonymous
-
10 years ago
10
Find Reddit Threads
Python
Simply searches for the thread-id in any kind of valid reddit-URL.
Submitted by
Mio
-
10 years ago
1
Goto next code field
Python
Finds the next 'fieldish' part of the code like after equals or brackets or comma.
Submitted by
anonymous
-
10 years ago
1
PCI Device
Python
no description available
Submitted by
anonymous
-
10 years ago
1
CamelCase parsing helper
Python
Helper regex for parsing CamelCase identifiers. Captures the first word of the identifier in group 1 and the rest in group 2. Iterate to consume the whole name. Works on fooBar, FooBar, and FOOBar.
Submitted by
Kevin
-
10 years ago
1
help?
Python
no description available
Submitted by
anonymous
-
10 years ago
-1
woop
Python
no description available
Submitted by
anonymous
-
10 years ago
0
deviantart scrape search results
Python
Scrape DeviantArt's search page HTMl to extract the category, the id, the user and the image url of each post.
Submitted by
nelieru
-
10 years ago
0
Parse Portuguese Frequency dictionary
Python
The following is a dictionary of 4991 portuguese words ordered by frequency. I need the file to have just number of line and word like the following 11 lines of example. So I need to delete all lines that don't start with a number and delete everything after number and word. Also delete all lines wi...
Submitted by
alfacent
-
10 years ago
1
check phone number(Taiwan)
Python
If pattern match, then this number probably is a phone number in Taiwan.
Submitted by
Assalin
-
10 years ago
-2
python bracketed text
Python
why doesn't this match text in brackets?
Submitted by
anonymous
-
10 years ago
-1
text beetween text
Python
no description available
Submitted by
karol
-
10 years ago
1
Alternatvie Country Code Capture
Python
no description available
Submitted by
Branden
-
10 years ago
1
...
250
251
252
253
254
...
256
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(?:
\A
|
;
)
(?:
\s
*
)
(
(?:
%macro
|
%inc
(?:
lude
)?
\b
|
data
|
proc
)
[^
;
]
+
)
/
g
Open regex in editor
Description
Basic sas boundaries, %macro proc %include etc
Submitted by
Leo Lopes
-
9 years ago