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 18,300 community submitted regex patterns...
0
email
Created
·
2023-03-14 13:18
Flavor
·
PCRE2 (PHP)
validate email
Submitted by
anonymous
0
Find valid SAS names
Created
·
2023-03-14 13:31
Flavor
·
PCRE2 (PHP)
https://www.sfu.ca/sasdoc/sashtml/lrcon/z0998953.htm#z0998951
Submitted by
ABANTR
0
Match time HH:MM:SS or MM:SS similar to YT chapters
Created
·
2023-03-14 23:53
Updated
·
2023-03-14 23:57
Flavor
·
ECMAScript (JavaScript)
Used in JS context to extract time from string metadata aka YouTube chapters. Trailing text and chars are ignored for each new line.
Submitted by
JVE
0
Match HTML tag with specific attributes
Created
·
2023-03-15 03:01
Flavor
·
ECMAScript (JavaScript)
1
Submitted by
anonymous
0
CSS Class Styles
Created
·
2023-03-15 09:19
Flavor
·
PCRE2 (PHP)
Regex to find CSS Class Styles
Submitted by
JR
0
GST (India)
Created
·
2023-03-15 13:20
Flavor
·
PCRE2 (PHP)
Detects Indian GST numbers (Goods & Services Tax). Based on https://groww.in/p/tax/gstin
Submitted by
anonymous
0
Method calls on PHP (static and not)
Created
·
2023-03-15 15:46
Flavor
·
PCRE2 (PHP)
Find ocurrences of method calls, static or not, on PHP.
Submitted by
Allyson
0
SolarWinds Orion exe matcher
Created
·
2023-03-16 09:59
Flavor
·
PCRE2 (PHP)
Matches the following : files part of the solarwinds\orion folder file names starting with solarwinds,swjobengine,netflowservice,counterfetcher file names ending with ".exe"
Submitted by
Aurélien BOUMANNE
0
tas-branch-validation
Created
·
2023-03-16 10:07
Flavor
·
Java
tas-branch-validation
Submitted by
doron-hafner
0
Youtube Twitch Channels
Created
·
2023-03-16 12:42
Flavor
·
ECMAScript (JavaScript)
No need to customize. Works for every modern youtube/twitch channels
Submitted by
mallusrgreat
0
Strip ANSI CSI
Created
·
2023-03-16 15:52
Updated
·
2023-03-17 09:04
Flavor
·
ECMAScript (JavaScript)
Use control_sequence_filter group to find and remove ANSI CSI codes. Not tested thoroughly. Only for the task that was necessary for me
Submitted by
Leonards Elksnis
0
Replace letters in email address
Created
·
2023-03-16 16:00
Flavor
·
PCRE (Legacy)
Replace letters in email address but left the first and last letter before and after @
Submitted by
Kaibo
0
Match markdown order and unorder list
Created
·
2023-03-17 08:19
Flavor
·
PCRE2 (PHP)
Same as title
Submitted by
anonymous
0
perga
Created
·
2023-03-17 08:53
Flavor
·
PCRE2 (PHP)
regex to find total payment
Submitted by
anonymous
0
Search/Replace Pressure sensor calibration
Created
·
2023-03-17 09:23
Flavor
·
PCRE (Legacy)
Changing from MPa to Bar
Submitted by
anonymous
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
Verificador de número de telefone/celular
Created
·
2023-03-17 19:30
Flavor
·
PCRE2 (PHP)
Minha primeira expressão regular
Submitted by
anonymous
0
Odoo parsing for Loki
Created
·
2023-03-17 22:15
Flavor
·
PCRE2 (PHP)
A regex to parse Odoo logs in Loki. If the line is from werkzeug, it will also capture the HTTP data.
Submitted by
coopdevs
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
Find GraphQL queries with missing id
Created
·
2023-03-19 02:26
Flavor
·
PCRE (Legacy)
It detects the following ` product { brand` and ignores ` product { id`
Submitted by
anonymous
Previous page
1
…
895
896
897
898
899
…
915
Next page
Community Library Entry
0
Regular Expression
Created
·
2023-03-18 11:57
Flavor
·
Python
r"
\w\s
(?P<type>
\S
+
)
\s
(?P<name>
\S
+
)
\s
(?P<model>
\S
+
)
\s
(?P<code>
\S
+
)
\s
(?P<serial_number>
\S
+
)
\s
(?P<in_charge>
\S
+
\s\S
+
\s\S
+
)
"
g
Open regex in editor
Description
Gets several strings and makes a list of data attributes in a formatted way
Submitted by
SevebFeet