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
Command line with escape
PCRE (PHP <7.3)
splits into command arguments: spaces split quotes keep spaced texts together \" escapes the quote
Submitted by
Skycoder42
-
9 years ago
0
Validate Password strength
PCRE (PHP <7.3)
(?=.*[A-Z]) # must contain 1 uppercase letter (?=.*[0-9]) # must contain 1 digit (?!.\n) # must not contain a newline character (?!.*\s) # must not contain any whitespace characters (?=.*[!$#+@%&]) # nust contain one of these symbols .{8,} # match a...
Submitted by
anonymous
-
9 years ago
1
Split String with Groups
PCRE (PHP <7.3)
Credits to TessellatingHeckler on StackOverview.com http://stackoverflow.com/questions/34235484/how-to-add-groups-to-capture-words-from-regex-split-pattern?noredirect=1#comment56214669_34235484
Submitted by
JMichaelTX
-
9 years ago
1
tm1_instance
PCRE (PHP <7.3)
for windows
Submitted by
anonymous
-
9 years ago
2
Shorten file path with /../
PCRE (PHP <7.3)
Example usage: $Path = preg_replace('/(?:^|(?<=\/))(?:+|\.(?!\.\/))++\/\.\.\//i', '', $Path);
Submitted by
Mr.Deek & +OnlineCop
-
9 years ago
1
Issues
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
/../ directory path cleaner
PCRE (PHP <7.3)
Replaces preceeding directory with / when ../ is used.
Submitted by
Mr.Deek
-
9 years ago
1
Split String using Custom Delimiter
PCRE (PHP <7.3)
This example uses colon (:)
Submitted by
anonymous
-
9 years ago
0
Testing (delete)
PCRE (PHP <7.3)
Testing (delete)
Submitted by
Testing (delete)
-
9 years ago
1
PE Filename Test
PCRE (PHP <7.3)
Blythedale Performance Evaluation Regex to check the Uploaded Filename
Submitted by
Vinod Jacob
-
9 years ago
1
match non-alphanumeric in string
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
getArrayInstance
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
getObjectInstance
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Bill Pay token
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
date validation during input
PCRE (PHP <7.3)
this regex is able to validate a date (format dd.mm.yyyy) in every state of user typing. i use it to ensure that the user isn't able to type in an invalid date at all (except from a leap year check which is done afterwards) The regex also makes assumptions of 'missed' separators so 1234 is captured...
Submitted by
anonymous
-
9 years ago
1
class code regex
Python
no description available
Submitted by
anonymous
-
9 years ago
1
Date 01
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
IV
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Commission
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
format time:"33:20 p.m"
Python
Get time in string 33:20 p.m
Submitted by
Hoang Phuong - Viet Nam
-
9 years ago
1
...
763
764
765
766
767
...
902
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
\b
(?:
(?:
25
[
0
-
5
]
|
2
[
0
-
4
]
[
0
-
9
]
|
1
?
[
1
-
9
]
[
0
-
9
]
?
|
10
[
0
-
9
]
)
(?:
(?<!
\.
)
\b
|
\.
)
)
(?:
(?:
25
[
0
-
5
]
|
2
[
0
-
4
]
[
0
-
9
]
|
[
01
]
?
[
0
-
9
]
[
0
-
9
]
?
)
(?:
(?<!
\.
)
\b
|
\.
)
){3}
/
g
Open regex in editor
Description
Match on VALID IP address anywhere in string.
Submitted by
KyleV
-
7 years ago