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...
2
Minecraft Entity Target Splitter
PCRE (PHP <7.3)
Regex to match part of minecraft command entity targets
Submitted by
aziis98
-
11 years ago
1
from Google-Maps
ECMAScript (JavaScript)
results all street-adresses from http://maps.googleapis.com/maps/api/geocode/xml?sensor=false&address=
Submitted by
PierreSash
-
11 years ago
1
SO: http://stackoverflow.com/questions/24371462/writing-regex-according-to-char/24371542#24371542
PCRE (PHP <7.3)
no description available
Submitted by
Eder Quiñones
-
11 years ago
2
filter tags and select text in between.
PCRE (PHP <7.3)
You can use it as a language selector.
Submitted by
koko
-
11 years ago
2
HTTP url parser
PCRE (PHP <7.3)
Parses a URL to the different parts
Submitted by
AmitK
-
11 years ago
1
Regular expression to remove all puncutation
Python
Removes all of the puncutation present inlcuding \n,\t,\r
Submitted by
Abhinav Gupta
-
11 years ago
1
Замена двойных кавычек (внутри кавычек) в названиÑÑ… организаций
ECMAScript (JavaScript)
О кавычках внутри кавычек ЕÑли внутри Ñлов, заключенных в кавычки, вÑтречаютÑÑ Ð´Ñ€ÑƒÐ³Ð¸Ðµ Ñлова, в Ñвою очередь заключенные в кавычки, рекомендуетÑÑ (при уÑловии, что д...
Submitted by
l-luk
-
11 years ago
1
blah
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
11 years ago
-3
regex help
PCRE (PHP <7.3)
help please. i need regex,
Submitted by
James
-
11 years ago
1
MAtch all lines starting with # to remove em
PCRE (PHP <7.3)
no description available
Submitted by
Jactaest
-
11 years ago
1
test_task_regexp_3
PCRE (PHP <7.3)
no description available
Submitted by
i.kulzazhenko
-
11 years ago
1
34 ile 3982 nolu özelliklerin seçimi
PCRE (PHP <7.3)
Kemik Grubu
Submitted by
Hakan YILMAZER
-
11 years ago
2
JavaScript trim string
ECMAScript (JavaScript)
Trim leading/trailing space on a string: do not use /gm flags. Trim each line of a multiline string: use the /gm flag.
Submitted by
https://github.com/naomik
-
11 years ago
1
42 school post cutter
PCRE (PHP <7.3)
This regex cut informations from post of the 42 school
Submitted by
Kerosene2000
-
11 years ago
1
@£$¥èéùìòÇ Øø ÅåΔ_ΦΓΛΩΠΨΣΘΞ€ÆæßÉ !"#¤%&'()*+,-./:;<=>?¡ÄÖÑܧ¿äöñüÃ
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
11 years ago
1
Match emails, as per RFC 5322
PCRE (PHP <7.3)
Match any email, according to the grammer in RFC 5322, found at http://tools.ietf.org/html/rfc5322
Submitted by
Nikita Popov
-
11 years ago
1
Triple Quoted String
PCRE (PHP <7.3)
More powerful than python style, this supports things like """" """", which matches totally. Also supports """a""""""b""", where there are two matches: """a""","""b""".
Submitted by
Flaviu
-
11 years ago
0
Find email address in a string.
Python
no description available
Submitted by
anonymous
-
11 years ago
0
Matches when the string does not contain an exact word
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
11 years ago
1
MongoDB _ID
PCRE (PHP <7.3)
Detect if is a valid id for MongoDB
Submitted by
manuerumx
-
11 years ago
1
...
887
888
889
890
891
...
902
Community Library Entry
0
Regular Expression
Python
r"
(?P<EngDate>
[
a
-
zA
-
Z
]
+
[
\s
\.
]
)?
(?P<Date0>
(?:
\d
{1,2}
(?=
[
\s
,./-
]
)
|
\d
{4}
)
)
(?:
\.
(?=
\
)
)?
(?(2)
,
?
)
年
?
(?P<d_sep>
[
\s
,./-
]
\
?
)?
(?:
(?P<Date1>
[^
\W\d
]
+
|
\d
{1,2}
)
(?(3)
\.
?
(?P=d_sep)
)
)?
月
?
(?P<Date2>
\d
{4}
|
\d
{1,2}
)?
(?P=d_sep)
?
(?=
[
日T
\s
]
)
"
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
4 years ago