Please enable JavaScript to use regex101
Regular
Expressions
101
Support Regex101
Social
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)
ECMAScript (JavaScript)
Python
Golang
Java
.NET 7.0 (C#)
Rust
PCRE (Legacy)
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 2,160 community submitted regex patterns...
0
Match Dates
Created
·
2023-03-09 20:48
Flavor
·
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
0
XML file extract from logs
Created
·
2023-03-10 10:26
Flavor
·
Python
For internal use
Submitted by
ezalos
0
Find ytdlp downloaded file path
Created
·
2023-03-10 10:28
Updated
·
2023-03-13 14:28
Flavor
·
Python
For internal use
Submitted by
ezalos
0
hyperlinks
Created
·
2023-03-11 03:59
Flavor
·
Python
collect information from web links
Submitted by
anonymous
0
Aurora SMS Log Parser
Created
·
2023-03-11 22:48
Flavor
·
Python
For personal use in my project.
Submitted by
sn3kdev
0
eval expression
Created
·
2023-03-12 19:29
Flavor
·
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
0
Git Commit Message Validation
Created
·
2023-03-17 09:33
Flavor
·
Python
Validate a modified Version of https://udacity.github.io/git-styleguide/
Submitted by
anonymous
0
Normalizing data from a string
Created
·
2023-03-18 11:57
Flavor
·
Python
Gets several strings and makes a list of data attributes in a formatted way
Submitted by
SevebFeet
0
Parse Roco url for information
Created
·
2023-03-22 14:51
Flavor
·
Python
Parses a url on the roco.cc site to its informative parts
Submitted by
Dirkjan Krijnders
0
Special GPS input
Created
·
2023-03-23 08:37
Flavor
·
Python
Used for TrigDroid
Submitted by
anonymous
0
10.*.*.X IP Adress
Created
·
2023-03-27 02:42
Flavor
·
Python
An expression to match 10.\.\.X IP Addresses. Examples 10.10.10.2 10.0.0.5 10.255.255.9
Submitted by
meowmeow
0
Lietuviškas tekstas
Created
·
2023-03-28 07:54
Flavor
·
Python
Šis šablonas parenka visas žodžių raides, kurios prasideda viena didžiąja raide, turi bent vieną didžiąją raidę ar skaičių, bet gali turėti daugiau mažųjų raidžių ar skaičių, ir gali būti atskirtos tarpo simboliu.
Submitted by
anonymous
0
Lietuviškas tekstas
Created
·
2023-03-28 08:17
Flavor
·
Python
Išrinkite visus žodžius, kurie yra iš visų didžiųjų raidžių (PVM, SWIFT, HABALT22)
Submitted by
anonymous
0
Bespoke NGINX Log Parse
Created
·
2023-03-28 18:17
Flavor
·
Python
Splits NGINX logs into named groups
Submitted by
Simon
0
Roman numerals check
Created
·
2023-03-29 06:32
Flavor
·
Python
It is used to check if the roman number is valid
Submitted by
JNg
0
Cisco_interface_back
Created
·
2023-04-06 09:55
Flavor
·
Python
\D+([0-9]/[0-9]|.)\s+(\d+\.\d+\.\d+\.\d+|unngiged)\s+(YES|NO)\s+\D{4,}\s+[A-Za-z]{2,}\s+[A-Za-z]{2,}\s+
Submitted by
anonymous
0
cep Brazil
Created
·
2023-04-06 20:47
Flavor
·
Python
Brazilian zip code verification, with 8 digits separated or not by -
Submitted by
anonymous
0
Dagger exception parsing
Created
·
2023-04-08 16:20
Flavor
·
Python
https://github.com/dagger/dagger/issues/4706#issuecomment-1498009538
Submitted by
anonymous
0
AWS EC2 CDK Machine
Created
·
2023-04-10 10:30
Flavor
·
Python
Validates if a string is a ec2 machine valid instance type.
Submitted by
https://github.com/DEADSEC-SECURITY
0
Phone number finder
Created
·
2023-04-13 07:20
Flavor
·
Python
Finds a phone number.
Submitted by
anonymous
Previous page
1
…
103
104
105
106
107
108
Next page
Community Library Entry
0
Regular Expression
Created
·
2023-07-07 00:59
Flavor
·
Python
r"
[
\d
]
+
\.
(
[
\s\S
]
*?
)
\n
+
A
.
(
[
\s\S
]
*?
)
\n
+
B
.
(
[
\s\S
]
*?
)
\n
+
C
.
(
[
\s\S
]
*?
)
\n
+
D
.
(
[
\s\S
]
*?
)(?=
\n
)
"
g
Open regex in editor
Description
对有ABCD四个选项的选择题题目进行匹配
Submitted by
Wang Miao