Please enable JavaScript to use this web application.
Regular
Expressions
101
Social
Social
Join the Discord community!
Follow me on twitter!
Send me an email
Donate
Donate
Donate through Paypal
Become a Github Sponsor
Info
Info
Find out what's new!
RegEx101 Wiki
Report bugs or make suggestions
What's new?
Loading content...
Close
Regex Editor
Regex Editor
Community Patterns
Community Patterns
Account
Account
Regex Quiz
Regex Quiz
Settings
Settings
Live Help
Live Help
Get help on Discord
Get help on IRC
Order By
Most Recent
Highest Score
Lowest Score
Most upvotes
Most downvotes
Filter by Flavor
PCRE2 (PHP >=7.3)
PCRE (PHP <7.3)
ECMAScript (JavaScript)
Python
Golang
Java 8
.NET (C#)
Rust
Sponsors
Community Patterns
Search among 12,580 community submitted regex patterns...
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Credit Card Numbers
PCRE (PHP <7.3)
Regex to detect credit card numbers. This regex was created for the purposes of detecting potentially compromised credentials for the purposes of information security and not to be used for malicious purposes. Based on data from https://www.freeformatter.com/credit-card-number-generator-validator....
Submitted by
anonymous
-
3 years ago
2020-04-13 13:35
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
tilak php tag ending filehacker
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-13 16:57
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
tilak phishing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-14 10:05
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
exact word?
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-14 12:02
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
exact word?
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-14 12:02
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
English decimal degrees
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-14 21:00
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
get da_cookies
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-14 21:18
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
letras y números con restricción de 2 a 3 caracteres
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-15 01:19
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Solamente decimales puntos y comas negativos y positivos
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-19 00:47
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Palabras y números con acentos y tildes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-15 02:03
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Limitar longitud de una palabra (solo numero)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-15 01:21
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Validar del 0 al infinito
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-15 01:25
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Fecha en formato dd/mm/yyyy ---- dd-mm-yyyy ---- dd.mm.yyyy ---- dd/mm/yy ---- dd-mm-yy ---- dd.mm.yy
PCRE (PHP <7.3)
dd/mm/yyyy ---- dd-mm-yyyy ---- dd.mm.yyyy ---- dd/mm/yy ---- dd-mm-yy ---- dd.mm.yy
Submitted by
anonymous
-
3 years ago
2020-04-15 01:45
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
date string - error
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-15 03:30
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Date string - dd/mm/yyyy (...) dd/mm/yyyy
PCRE (PHP <7.3)
Lấy cả chuỗi dài
Submitted by
toanps
-
3 years ago
2020-04-15 04:41
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
tilak partial clean php redirect
PCRE (PHP <7.3)
partial clean php redirect
Submitted by
anonymous
-
3 years ago
2020-04-15 12:20
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
tilak fix
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-15 12:22
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
tilak phishing file
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-15 13:29
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Find numbers prefixed by "fieldid=". Retain numbers only.
PCRE (PHP <7.3)
Ignore lines without the "fieldid=" pattern.
Submitted by
anonymous
-
3 years ago
2020-04-15 15:38
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
numbers in wp
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
3 years ago
2020-04-15 20:58
1
...
593
594
595
596
597
598
599
...
629
WOrd with colon
0
1 upvotes, 1 downvotes (score 9.5%) (You must be signed in to vote)
Regular Expression
ECMAScript (JavaScript)
/
(
(?:
[^
\d\s
]
)+
(?=
\:
)
)
/
gi
Open regex in editor
Description
Loading markdown...
Submitted by
HJ
-
8 years ago
2015-07-20 19:36