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 4,760 community submitted regex patterns...
0
comic script seperate PANEL, DIALOG, action div class
PCRE2 (PHP >=7.3)
orignal question and image: https://www.reddit.com/r/regex/comments/q8igd4/how_can_i_group_the_second_green_group_end_of/hgpydig/?context=3
Submitted by
anonymous
-
3 years ago
0
Another WordPress Classified Plugin Date Conversion
PCRE2 (PHP >=7.3)
Convert your date from yyyy-mm-dd to mm/dd/yyyy and your time from hour:minute:second to hour:minute. You can manipulate the data further with your own function.
Submitted by
anonymous
-
3 years ago
0
Telephone numbers for Spain, national calls. Ver.2
PCRE2 (PHP >=7.3)
It validates the phone numbers for Spain, national calls. Only digit number format, without spaces, dots nor dashes. This second version allows a empty string. OK: 630222544 941641893...
Submitted by
sajime
-
3 years ago
0
Regex that matches laughter interjections in Spanish
Python
Regex that matches laughter interjections in Spanish
Submitted by
alexcg
-
3 years ago
0
Mammars tumour dx
PCRE2 (PHP >=7.3)
identifying mammary tumour diagnosis
Submitted by
Georgia Salmon
-
3 years ago
0
IBAN Ukraine
PCRE2 (PHP >=7.3)
Checcking IBAN number for Ukraine
Submitted by
anonymous
-
3 years ago
0
Find text between two words
PCRE2 (PHP >=7.3)
Find text between two words
Submitted by
suha a
-
3 years ago
0
regex
Python
xx
Submitted by
anonymous
-
3 years ago
-1
test
Python
d
Submitted by
anonymous
-
3 years ago
0
Match all brackets/parens only
PCRE2 (PHP >=7.3)
Match all brackets and nothing else: [] {} ()
Submitted by
anonymous
-
3 years ago
0
Valid IBAN within any SEPA country (2021-10)
PCRE2 (PHP >=7.3)
This regex validates whether an IBAN is valid, it only considers IBAN from countries within the SEPA area. Specifications: https://www.iban.com/structure
Submitted by
Vadorequest
-
3 years ago
0
get txt html
PCRE2 (PHP >=7.3)
asad
Submitted by
anonymous
-
3 years ago
0
misc
PCRE2 (PHP >=7.3)
misc
Submitted by
anonymous
-
3 years ago
0
pali word not in html tag
PCRE2 (PHP >=7.3)
pali word not in html tag
Submitted by
pndaza
-
3 years ago
(Last modified 3 years ago)
0
check regext number and anything.
PCRE2 (PHP >=7.3)
check regex number and anything.
Submitted by
Claudio Santos
-
3 years ago
(Last modified 3 years ago)
0
najit cenu
PCRE2 (PHP >=7.3)
tmp
Submitted by
anonymous
-
3 years ago
0
LaTeX matrix/table newline
PCRE2 (PHP >=7.3)
This regex matches newlines in LaTeX matrices/arrays/tabulars and adds \\ automatically.
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
Unicode pattern
PCRE2 (PHP >=7.3)
匹配Unicode
Submitted by
anonymous
-
3 years ago
1
Conteúdo de Tag
PCRE2 (PHP >=7.3)
Captura o conteúdo do Lang do Twig. Serve pra qualquer conteúdo de tags.
Submitted by
Marcelo Gomes
-
3 years ago
1
matches commas not before, after or between digits
PCRE2 (PHP >=7.3)
this matches all commas except for ones that are next to a digit in some way. change the , or \d or \D according to needs
Submitted by
anonymous
-
3 years ago
1
...
123
124
125
126
127
...
238
Community Library Entry
0
Regular Expression
Python
r"
(?P<nom>
^
[
\w\d
]
?
)
\/
(?P<latfield>
(?P<latflag>
[
NS
]
)
(?P<latval>
\d
{1,2}
d
[
0
-
5
]
\d
?
(
\.
\d
*
)?
)
)
\/
(?P<lonfield>
(?P<lonflag>
[
EW
]
)
(?P<lonval>
[
01
]
?
\d
{1,2}
d
[
0
-
5
]
\d
?
(
\.
\d
*
)?
)
$
)
"
s
Open regex in editor
Description
Text fields describing a name and positions
Submitted by
bruno.piguet@meteo.fr
-
11 years ago