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...
-2
twitter usernames
Python
no description available
Submitted by
anonymous
-
9 years ago
1
Search for progressive download numbre
PCRE (PHP <7.3)
no description available
Submitted by
Antonio Malatesta
-
9 years ago
-1
Grep the daily purchase price for 250 g gold from http://www.scheidean
PCRE (PHP <7.3)
Grep the daily purchase price for 250 g gold from http://www.scheideanstalt.de/aktuelle-ankaufskurse/ankaufskurse-barren/: gold=$(wget -q -O- http://www.scheideanstalt.de/aktuelle-ankaufskurse/ankaufskurse-barren/ | grep "250 g" | sed -r 's/^.250 g]>([0-9]+)\.([0-9]+[0-9]+[0-9]+)\,([0-9]+[0-9]+).*$...
Submitted by
MH
-
9 years ago
0
token
ECMAScript (JavaScript)
replace token like [foo:bar:ba zz]
Submitted by
anonymous
-
9 years ago
1
search text matching any word
ECMAScript (JavaScript)
search text matching any word
Submitted by
Hiren Shah
-
9 years ago
0
date format regex for MM/dd/yyyy in javascript
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
-2
Date format regex for ddMMMyyyy
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
2
date formatting mm/dd/yyyy format
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
a
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
url match
PCRE (PHP <7.3)
match the most common url stuctures
Submitted by
whoevor
-
9 years ago
1
Validate cron schedule string
PCRE (PHP <7.3)
Validates a string for valid cron schedules such as 10:45, 11:15 etc.
Submitted by
Michael Sundgaard
-
9 years ago
1
email matcher
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
CronSchedule Verifier
PCRE (PHP <7.3)
Verifies a cron schedule pattern such as: 10:45 or multiple times such as: 11:00 22:10 23:15
Submitted by
Michael Sundgaard
-
9 years ago
1
author bibtext
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
3
Social Security Number (SSN)
ECMAScript (JavaScript)
tests for valid social security numbers according to the social security administration. more specifically: -disallows a group to have all 0s -disallows first group to have all 6s -disallows a ssn to begin with 9 note that this does not test for issued ssn's. that would be impossible to implement h...
Submitted by
noxToken
-
9 years ago
1
Pulling values from weblog
PCRE (PHP <7.3)
Pulling specific values from weblog. In this case, the OS.
Submitted by
SC
-
9 years ago
87
Password Validation
ECMAScript (JavaScript)
Checks that a password has a minimum of 6 characters, at least 1 uppercase letter, 1 lowercase letter, and 1 number with no spaces.
Submitted by
Christian Klemp
-
9 years ago
1
1c document numbers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Email validator JavaScript
ECMAScript (JavaScript)
Validates all possible emails with western and cyrilic chars.
Submitted by
hudsonvsm
-
9 years ago
1
Email validator PHP
PCRE (PHP <7.3)
Validate all posible combinations with western and cyrilic chars.
Submitted by
hudsonvsm
-
9 years ago
1
...
830
831
832
833
834
...
902
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
SELECT
[
\w\s
\(\*\)\,
]
*
FROM
ticket_file
[
\w\s
\"\'\`\<\>\=
]
*
/
gm
Open regex in editor
Description
Pattern to detect certain SQL queries in the PROCESSLIST results.
Submitted by
anonymous
-
2 years ago