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,000 community submitted regex patterns...
0
Extract from on-pageText
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
\S
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
\s
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
.
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
{1,2} = (1 vez ou 2 vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
{2,} = (2 vezes ou n vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
{3} = (Obrigatoriamente 3 vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
? = (0 a 1 vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
+ = (1 a n vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
* = (0 a n vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Find Translations without textdomain
Python
Rexeg to find translations without textdomain. Primarelly made for Wordpress but you can change expression to include different textdomain wrapper. Currently they are set to: __(' TEXT $phpvars or anything else ') I used it in SublimeText to search for lines of PHP code, that's why regex is made f...
Submitted by
cure85
-
8 years ago
0
GEDCOM parsing experiment
PCRE (PHP <7.3)
no description available
Submitted by
Hatch
-
8 years ago
0
flight number
PCRE (PHP <7.3)
recognize a flight number define in wikipedia and capture carrier code and flight number. source
Submitted by
anonymous
-
8 years ago
0
CSS - match syntax (experimental)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
HTML - matches start tag with specific attribute
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
HTML - matches start tag with specific attribute
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
HTML - matches specific HTML tag pair including attributes in the tags.
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
HTML - matches close part of specific tag pair
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
HTML - matches start tag of specific tag including attibutes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
match all start tags including attributes in the tags
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
...
597
598
599
600
601
...
900
Community Library Entry
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