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
Email
PCRE2 (PHP >=7.3)
Email Validator
Submitted by
anonymous
-
3 years ago
0
txt mini
Python
txt
Submitted by
anonymous
-
3 years ago
0
Simple Address Validation
ECMAScript (JavaScript)
This tries to validate the address in English-compliant formats. Note: Not tested for script languages Arabic. const regExp = /^(?![ -.&,'":?!/])(?!.[- &'":]$)(?!.[-.#@&,:?!/]{2})[a-zA-Z0-9- .#@&,_'":.?!/]+$/; `
Submitted by
Sowed Castelli
-
3 years ago
0
Match user defined date format
PCRE2 (PHP >=7.3)
Only matches, when date is in brackets. Allows for KW/CW or Q or normal date. Delimiters are '.' & '-'; Does not work for years < 2000 and does not validate for correct month- or day-values (except quarter).
Submitted by
MjSt
-
3 years ago
0
email, E-amil Python
Python
Reference https://dojang.io/mod/page/view.php?id=2439 https://wikidocs.net/4308#re https://ko.wikipedia.org/wiki/%EC%A0%95%EA%B7%9C_%ED%91%9C%ED%98%84%EC%8B%9D https://ko.wikipedia.org/wiki/%EA%B5%AD%EC%A0%9C%ED%99%94_%EB%8F%84%EB%A9%94%EC%9D%B8_%EB%84%A4%EC%9E%84 https://ko.wikipedia.org/wiki/%EC%A...
Submitted by
Hong Hyeon Gi
-
3 years ago
0
Korea Phone_number
Python
Reference https://ko.wikipedia.org/wiki/%EB%8C%80%ED%95%9C%EB%AF%BC%EA%B5%AD%EC%9D%98_%EC%A0%84%ED%99%94%EB%B2%88%ED%98%B8_%EC%B2%B4%EA%B3%84#%EC%9D%B4%EB%8F%99%ED%86%B5%EC%8B%A0_%EB%B0%8F_%EB%B6%80%EA%B0%80%ED%86%B5%EC%8B%A0%EB%A7%9D_%EB%93%B1_(01Y)
Submitted by
Hong Hyeon Gi
-
3 years ago
0
IP
Python
Reference https://vencedor.tistory.com/85
Submitted by
RuvyTale
-
3 years ago
0
MD5 HASH
Python
Reference https://12bme.tistory.com/293 http://wiki.hash.kr/index.php/MD5
Submitted by
RuvyTale
-
3 years ago
0
SHA1 HASH
Python
Reference https://12bme.tistory.com/293 http://wiki.hash.kr/index.php/MD5
Submitted by
RuvyTale
-
3 years ago
0
vert-cata
Python
log
Submitted by
anonymous
-
3 years ago
0
nsv2-general
Python
log
Submitted by
anonymous
-
3 years ago
0
National Highways - Strategic Road Network - Geographic Addresses
PCRE2 (PHP >=7.3)
A mechanism to validate the entry of the National Highways Geographic Locations
Submitted by
anonymous
-
3 years ago
0
Latitude
PCRE2 (PHP >=7.3)
definition of latitude in the format DD MM.mmm within the range "48 00.000" to "61 59.999"
Submitted by
anonymous
-
3 years ago
0
Longitude
PCRE2 (PHP >=7.3)
A definition of Longitude in the format DD MM.mmm within the range "-10 59.999" to "2 59.999"
Submitted by
anonymous
-
3 years ago
0
整数或小数
PCRE2 (PHP >=7.3)
整数或小数
Submitted by
anonymous
-
3 years ago
0
Verificar caracter repetido
Java 8
Verificar caracter repetido
Submitted by
anonymous
-
3 years ago
0
Tok. test.1
Python
T
Submitted by
anonymous
-
3 years ago
0
Primeiro exemplo
PCRE2 (PHP >=7.3)
oi
Submitted by
eu
-
3 years ago
0
屏蔽脏话
ECMAScript (JavaScript)
屏蔽骂人脏话、政治言论等
Submitted by
anonymous
-
3 years ago
0
bic-swift-code-checker
PCRE2 (PHP >=7.3)
https://wise.com/fr/swift-codes/bic-swift-code-checker
Submitted by
anonymous
-
3 years ago
1
...
802
803
804
805
806
...
902
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
(?<Address>
(?<Protocol>
https
?
:
\/\/
)?
(?<Subdomain>
\w
*
\.
)?
(?<Domain>
(?:
[
a
-
z0
-
9
\-
]
{2,}
)
\.
(?:
[^
\s
\/\.
]
{2,}
)
)
(?<Path>
\/
[^
\s
\?
]
*
)?
(?<Params>
(?:
\?
|
\#
)
[^
\s
\/\?\:
]
*
)?
)
/
gi
Open regex in editor
Description
Get every part of a link
Submitted by
Ricardo Boss (MCMainiac)
-
9 years ago