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 2,320 community submitted regex patterns...
0
if else parser part 1
Java 8
A basic if else parser. It automatically captures the if equation and the result. It supports if, elif, and else statements. Note: for elif statements part 2 is required. This is because Regex can't use one group to capture multiple elif statements. Part 2 can be found here
Submitted by
Rubeste
-
3 years ago
0
if else parser part 2
Java 8
This is part 2 of my if else parser. Part 2 is only needed for elif statements. Note: From the elif result from part 1 add a #end to close the statement. I might change it a bit in the future so this isn't needed. ...
Submitted by
Rubeste
-
3 years ago
0
ISO 3166-1 alpha-3
Java 8
ISO 3166-1 alpha-3 countries for validation
Submitted by
anonymous
-
3 years ago
0
Episodes Files
Python
#Episodes Files this pattern split the series episodes files to extract data
Submitted by
anonymous
-
3 years ago
0
Any letter finder
Python
This regex, by me, finds any letter, and may include: Emojis: 🥺 Miscallenious symbols and letters: Şâď Kaomojis: (T෴T ^^) And more: …
Submitted by
Rix The Regex Maker
-
3 years ago
0
slovak and czech phone numbers
Python
Slovak and czech phone numbers. 0908312334 +421908332314 004219126559874 +420987654321...
Submitted by
Adrián
-
3 years ago
0
JSON string
Python
Can process a JSON string
Submitted by
Mass
-
3 years ago
(Last modified 3 years ago)
0
Domain Matching
Python
Avoids false positives
Submitted by
Sly
-
3 years ago
(Last modified 3 years ago)
0
json digit
Python
parses a json digit such as: 1, 1.0, -1, -1.0, -1.0E-1, etc.. rejects digits such as: ...
Submitted by
Mass
-
3 years ago
0
HTML Scraping: Yelp Reviews
Python
'''(\d).[\s\S]?([\s\S]?)[\s\S]?title="(\d.\d)[\s\S]?(\d)\sreviews[\s\S]?range">(\$)'''gm
Submitted by
anonymous
-
3 years ago
0
PhoneNumbers with special characters
Python
This will help with phone numbers where you want the numbers but not necessarily all the special characters
Submitted by
anonymous
-
3 years ago
0
Validate Phone number
Python
Validate Phone number
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
AnotherURLMatcher
Python
Just another URL patron matcher
Submitted by
me
-
3 years ago
(Last modified 3 years ago)
0
non word on the beginning (including underscore)
Python
use for coursera
Submitted by
anonymous
-
3 years ago
0
txt mini
Python
txt
Submitted by
anonymous
-
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
1
...
95
96
97
98
99
...
116
Community Library Entry
1
Regular Expression
Python
r"
(
(
\.
)
\w
+
)
$
"
Open regex in editor
Description
Grabs the last "." of a string, and any word characters (\w) that follow.
Submitted by
G
-
8 years ago