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
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 7.0 (C#)
Rust
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 2,780 community submitted regex patterns...
1
Signed numbers with optional decimal part (comma or dot)
PCRE2 (PHP >=7.3)
Signed numbers with optional decimal part (comma or dot)
Submitted by
ImAlbi57
-
3 years ago
1
python 3 executable regex
PCRE2 (PHP >=7.3)
give then names of various executables filter out ones that run python3+
Submitted by
anonymous
-
3 years ago
1
ParsingAmazonInvoice
PCRE2 (PHP >=7.3)
Goes through a Plain text derived from a PDF capturing the order number, the items, the order and ship dated and the costs.
Submitted by
anonymous
-
3 years ago
1
replace between brackets 3
PCRE2 (PHP >=7.3)
replace multiple matches of words in brackets with no brackets
Submitted by
anonymous
-
3 years ago
1
zpool status
PCRE2 (PHP >=7.3)
Matches the output of zpool status -v. Use preg_match_all with PREG_SET_ORDER to match multiple pools
Submitted by
GiorgioAresu
-
3 years ago
1
Nitroflare ID
PCRE2 (PHP >=7.3)
https://nitroflare.com/view/845F2436715ASF5/XUYZ.zip
Submitted by
anonymous
-
3 years ago
1
Nitroflare v2
PCRE2 (PHP >=7.3)
Extract ID
Submitted by
anonymous
-
3 years ago
1
sdfsf
PCRE2 (PHP >=7.3)
sdf
Submitted by
dsf
-
3 years ago
1
notlike
PCRE2 (PHP >=7.3)
notlike
Submitted by
anonymous
-
3 years ago
1
All digit must be number
PCRE2 (PHP >=7.3)
All digit must be number
Submitted by
anonymous
-
3 years ago
1
Must be start with 62 and all number (indonesia phone)
PCRE2 (PHP >=7.3)
Must be start with 62 and all number (indonesia phone)
Submitted by
anonymous
-
3 years ago
1
Schuljahr
PCRE2 (PHP >=7.3)
Akzeptiert Schuljahre wie 2021/22
Submitted by
anonymous
-
3 years ago
1
URL and mailto
PCRE2 (PHP >=7.3)
RegExp to match valid URL of http://, https://, ftp://, and mailto: protocols
Submitted by
Sergey Klinov
-
3 years ago
1
shortcode wordpress
PCRE2 (PHP >=7.3)
Wordpress shortcode regular expression
Submitted by
selik
-
3 years ago
1
PHP Multiline Error Log
PCRE2 (PHP >=7.3)
Matches multiline entries (e.g. those containing exception stack traces or just multiline values) in a PHP error log produced by error_log().
Submitted by
Anton Ukhanev
-
3 years ago
(Last modified 3 years ago)
1
the_100_720p_hun-eng_sln
PCRE2 (PHP >=7.3)
rss filter, deluge, ncore Episodes and Seasons
Submitted by
Klein
-
3 years ago
(Last modified 3 years ago)
1
Persian words
PCRE2 (PHP >=7.3)
Regex for find persian letters in a string
Submitted by
Hamed Faryabi
-
3 years ago
1
RegEx to add any valid US phone number inputs
PCRE2 (PHP >=7.3)
##examples of valid US phone number inputs *555-555-5555 *(555)555-5555 *(555) 555-5555 *555 555 5555...
Submitted by
@abhi00o7
-
3 years ago
1
Password requirements checker
PCRE2 (PHP >=7.3)
This regular expression allows you to simply check if a password matches with your conditions. By default it will require: 1 {1} uppercase letter [A-Z] or more 1 {1} lowercase letter [a-z] or more 1 {1} number [0-9] or more 1 {1} special character [@#$%^!&+=.\-_*] or more...
Submitted by
Pythack
-
3 years ago
(Last modified 3 years ago)
1
Youtube video link regular expression
PCRE2 (PHP >=7.3)
This regular expression allows you to test strings to see if they are youtube video links.
Submitted by
Pythack
-
3 years ago
1
...
3
4
5
6
7
...
139
Replace namespaces in xpath with local-name
0
Regular Expression
.NET 7.0 (C#)
@"
(?<=
(
/
|
^
)
)
(
(
(
/
|
^
)
|
(
\w
*
:
)
)
(?<node>
.
*
?
)
)
(?=
/
|
$
)
"
gm
Open regex in editor
Description
Replace namespaces in xpath with local-name
Submitted by
pvlzh
-
a year ago