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,040 community submitted regex patterns...
0
Find the JSON in invalid string
PCRE (PHP <7.3)
http://stackoverflow.com/q/40361407/47672
Submitted by
anonymous
-
8 years ago
0
ADI Actor names
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
JAMM Title parse for duration
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Capture Nth number of instances before a pattern
PCRE (PHP <7.3)
Elegant way to capture recurring patterns up to a point.
Submitted by
anonymous
-
8 years ago
0
postscreen
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
finding hashtags
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
IPv4 search
PCRE (PHP <7.3)
basic ip search
Submitted by
anonymous
-
8 years ago
0
Twitter hashtags
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Extract database name of an PostgreSQL JDBC connection url
PCRE (PHP <7.3)
Extracts the database name of an PostgreSQL JDBC connection url
Submitted by
anonymous
-
8 years ago
0
()
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Check a date in an invoice
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Find Youtube ID from link, url or Youtube embed code
PCRE (PHP <7.3)
Find Youtube ID from link, url or Youtube embed code
Submitted by
onigetoc
-
8 years ago
0
us telephone
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
For VM - Match on grub if elevator=noop is present or not
Python
name: OPITMIZ | GRUB | Set DISK Scheduler a elevator=noop lineinfile: dest: /etc/default/grub regexp: '^(GRUB_CMDLINE_LINUX_DEFAULT=(?!.elevator=noop).)\"' line: '\1 elevator=noop"' backrefs: yes...
Submitted by
Pintax
-
8 years ago
0
sort
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
sort 2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
sort3
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Match fstab for add noatime and noadirtime
Python
var: grub_opts: 'elevator=noop' name: OPTIMIZ | FSTAB | Set {{ fstab_opts }} replace: dest: /etc/fstab...
Submitted by
anonymous
-
8 years ago
0
phone
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Look first character that are special chracters
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
...
388
389
390
391
392
...
902
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
^
(?:
(?!
\b
user
\/
m
\b
)
.
)*
$
/
gi
Open regex in editor
Description
Match every string that does not contain "user/m"
Submitted by
anonymous
-
4 years ago