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,220 community submitted regex patterns...
0
Regex on linkedin alumni
Python
no description available
Submitted by
anonymous
-
5 years ago
0
my username
Python
no description available
Submitted by
smileycreations15
-
5 years ago
0
Data
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Add commas to big numbers
Python
no description available
Submitted by
anonymous
-
5 years ago
0
match weight with pounds and kg
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Email validation
Python
no description available
Submitted by
anonymous
-
5 years ago
0
html code for LaTeX math expression
Python
Finds any value inside the HTML ... in order to replace with $...$
Submitted by
anonymous
-
5 years ago
0
ShortcutLinkInline
Python
no description available
Submitted by
anonymous
-
5 years ago
0
comand.py:InlineCommand
Python
no description available
Submitted by
anonymous
-
5 years ago
0
MAC Address
Python
Simply match a run of the meal MAC address
Submitted by
anonymous
-
5 years ago
0
Match odd amount of backslashes.
Python
This regular expression will match anytime in a string where an odd amount of backslashes directly following eachother are present.
Submitted by
anonymous
-
5 years ago
0
Extract value of time from *.csv file name
Python
Works for both positive and negative exponent Works for both lowercase exponent (e) and uppercase exponent (E)
Submitted by
anonymous
-
5 years ago
0
Extract Abaqus file/ Nastran file node number and mapped temperature or pressure value
Python
Process: Temperature/ pressure data generated by CFD software StarCCM+ Temperature/ pressure data extracted during runtime by StarCCM+ in form of *.csv files Data extracted every x timesteps (x = integer value >= 1) Data mapping performed using "tabular data mapper" tool in StarCCM+. Algorithm used...
Submitted by
anonymous
-
5 years ago
0
Chilean phone number (mobile)
Python
phone number with country cod. +56 (chile)
Submitted by
anonymous
-
5 years ago
0
Lookahead and lookbehind
Python
no description available
Submitted by
anonymous
-
5 years ago
0
asciidoctor block title
Python
no description available
Submitted by
anonymous
-
5 years ago
0
asciidoctor source block indicator
Python
no description available
Submitted by
anonymous
-
5 years ago
0
asciidoctor header id
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Credit_IPs
Python
no description available
Submitted by
anonymous
-
5 years ago
0
FAR RegEx
Python
no description available
Submitted by
anonymous
-
5 years ago
1
...
24
25
26
27
28
...
111
Community Library Entry
3
Regular Expression
.NET 7.0 (C#)
@"
\w
+
\(
[^
()
]
*
(
(
(?'parenthesesPair'
\(
)
[^
()
]
*
)+
(
(?'-parenthesesPair'
\)
)
[^
()
]
*
)+
)*
(?(parenthesesPair)
(?!
)
)
\)
"
gm
Open regex in editor
Description
Match any layer bracket pair
Submitted by
Yakumo Yukari
-
3 years ago