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,640 community submitted regex patterns...
0
test
Java 8
test
Submitted by
anonymous
-
2 years ago
0
Database datatype check
Java 8
Database data type determination and extraction. Example: varchar(20) varchar2(20) number(20,3) timestamp...
Submitted by
anonymous
-
2 years ago
0
datetime
Python
Simple datetime expression for [DD.MM[.YYYY]]T[hh[:mm]]
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Titulo da expressao
Java 8
\w
Submitted by
anonymous
-
2 years ago
0
Validación_patentes_ARG
Python
Validación de patentes de Argentina, del tipo XXX### o XX###XX.
Submitted by
PMM
-
2 years ago
0
Obtiene Subject 3 Ouutlook
Python
'^Subject:.\s((=?^.[?=$]).*)'
Submitted by
Julio Bacan
-
2 years ago
0
get facebook page id - SMART
Python
get facebook page id from html response
Submitted by
anonymous
-
2 years ago
0
Bulgarian Phones
Python
A regex for finding a Bulgarian phone. A Softuni task
Submitted by
anonymous
-
2 years ago
0
Match Dates
Python
Write a program, which matches a date in the format "dd{separator}MMM{separator}yyyy". Use capturing groups in your regular expression.
Submitted by
anonymous
-
2 years ago
0
Semver split
Golang
"1.2.3" Group 1: 1 Group 2: 2 Group 3: 3
Submitted by
Icaruk
-
2 years ago
0
XML file extract from logs
Python
For internal use
Submitted by
ezalos
-
2 years ago
0
Find ytdlp downloaded file path
Python
For internal use
Submitted by
ezalos
-
2 years ago
(Last modified 2 years ago)
0
hyperlinks
Python
collect information from web links
Submitted by
anonymous
-
2 years ago
0
Aurora SMS Log Parser
Python
For personal use in my project.
Submitted by
sn3kdev
-
2 years ago
0
domain
Golang
ss
Submitted by
sssssss
-
2 years ago
0
eval expression
Python
expression will create from example: 2 + 1 + 3 * 510.3 - 50 * (20 - 29 * 2) this: 2,+,1,+,3,,510.3,-,50,,(20,-,29,*,2)
Submitted by
NotMEE12
-
2 years ago
0
ip address
Java 8
ip address regex
Submitted by
shyam
-
2 years ago
0
tas-branch-validation
Java 8
tas-branch-validation
Submitted by
doron-hafner
-
2 years ago
0
Git Commit Message Validation
Python
Validate a modified Version of https://udacity.github.io/git-styleguide/
Submitted by
anonymous
-
2 years ago
0
Normalizing data from a string
Python
Gets several strings and makes a list of data attributes in a formatted way
Submitted by
SevebFeet
-
2 years ago
1
...
125
126
127
128
129
...
132
Community Library Entry
0
Regular Expression
Python
r"
(?<=
^
\*
page
)
(?P<pg>
[
\d
]
{1,3}
)
|
(?<!
;
)
(?P<txt_a>
[
]
.
*
)
(?=
\[
lr
\]
\n
)
|
(?<!
;
)
(?P<txt_b>
^
[
]
{2}
.
*
)
|
(?P<txt_c>
@align
anchor=
\"
center
\"
text=
.
+
)
|
(?P<txt_d>
^
[^
*@[;
]
.
+
)
"
gm
Open regex in editor
Description
Attempting to parse Fate/Stay Night scripts nicely
Submitted by
anonymous
-
a year ago