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,020 community submitted regex patterns...
0
regex 1
PCRE2 (PHP >=7.3)
search api with category and subcategory
Submitted by
anonymous
-
3 years ago
0
C-style block comment with "*/" escape
Golang
Match /* ... / with escape of quotation marks, e.g. / "*/" */. No look ahead needed.
Submitted by
Guyutongxue
-
3 years ago
0
Bhumi
PCRE2 (PHP >=7.3)
Submitted by
Ewallet
-
3 years ago
0
German Bible veses
ECMAScript (JavaScript)
A regex that captures the common Bible books, chapter, and verses for the German language.
Submitted by
Sergio Santos
-
3 years ago
(Last modified 3 years ago)
0
hbase offline state regex
PCRE2 (PHP >=7.3)
CVP
Submitted by
Diego
-
3 years ago
0
non word on the beginning (including underscore)
Python
use for coursera
Submitted by
anonymous
-
3 years ago
0
Separate First Vowel
ECMAScript (JavaScript)
Separator for a vowel start string
Submitted by
FerreiraR
-
3 years ago
0
Test MGNT
PCRE2 (PHP >=7.3)
just a test
Submitted by
dang
-
3 years ago
0
Diskusija
ECMAScript (JavaScript)
ss
Submitted by
LiunuxMan
-
3 years ago
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
1
...
800
801
802
803
804
...
901
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
(?<book>
(?:
\d
\.
?
\s
*
)?
[
\w\u00E4\u00F6\u00FC\u00C4\u00D6\u00DC\u00df
]
+
)
\s
+
(?<chapter>
\d
+
)
[
,|:
]
{1}
[
\s
]
?
(?<verses>
(?:
\d
+
[
a
-
z
]
?
[
\.
|-
]
?
)+
)
/
usg
Open regex in editor
Description
A regex that captures the common Bible books, chapter, and verses for the German language.
Submitted by
Sergio Santos
-
3 years ago
(Last modified 3 years ago)