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 3,480 community submitted regex patterns...
3
Arrow function to Normal function
Created
·
2015-09-13 17:51
Flavor
·
ECMAScript (JavaScript)
Convert Arrow Function to Normal Function
Submitted by
Abhisek Pattnaik
3
SemVer chain parsing
Created
·
2015-09-18 09:48
Flavor
·
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
3
yyyy-MM-dd hh:MM
Created
·
2015-09-28 13:36
Flavor
·
ECMAScript (JavaScript)
date format for "yyyy-MM-dd hh:MM" valid strict model.
Submitted by
image72
3
Get Headings From Markdown Format
Created
·
2015-11-30 04:23
Flavor
·
ECMAScript (JavaScript)
Get all headings in a Markdown Format Text
Submitted by
Ferdinand Dimas
3
Non vowel words
Created
·
2015-12-29 19:32
Flavor
·
ECMAScript (JavaScript)
/\b(+)\b/ig
Submitted by
regexe
3
Multiple emails seperated with comma
Created
·
2016-04-22 14:20
Flavor
·
ECMAScript (JavaScript)
Multiple emails seperated with comma allowed multiple dot ltds
Submitted by
Hassan Youssef
3
Find css lines with px sizing
Created
·
2016-04-27 12:39
Flavor
·
ECMAScript (JavaScript)
Use to find css sizing that migh need conversion to vs or alike.
Submitted by
Bob
3
File name Cleanup
Created
·
2016-05-13 15:08
Flavor
·
ECMAScript (JavaScript)
Strips all non "A-Z,a-z,0-9+-_" characters and replaces them with a single "-"
Submitted by
Apsis0215
3
IBAN
Created
·
2016-06-27 18:57
Flavor
·
ECMAScript (JavaScript)
The complete regex for IBAN numbers
Submitted by
anonymous
3
Sql Injection detection
Created
·
2016-08-12 01:11
Flavor
·
ECMAScript (JavaScript)
this regex detect any sql injections .
Submitted by
Saeed.Tabrizi@gamil.com
3
Markdown link rewriting
Created
·
2016-09-07 21:06
Flavor
·
ECMAScript (JavaScript)
A regular expression which finds all instances of markdown links and helps with rewriting link paths.
Submitted by
Will Vaughn
3
Email
Created
·
2021-03-20 22:30
Flavor
·
ECMAScript (JavaScript)
This is a bit simpler version that is still quite robust. It was taken from a Formik example.
Submitted by
codefinity
3
Link markdown with title text
Created
·
2021-03-21 15:20
Flavor
·
ECMAScript (JavaScript)
Simple link mardown detection with a title text
Submitted by
Olpouin
3
discord invite link
Created
·
2021-05-15 01:47
Flavor
·
ECMAScript (JavaScript)
detect discord invite links such as: discord.gg/link discord.com/invite/link .gg/link .com/invite/link it also puts the link into a separate name group, so you can do http requests and stuff edited cuz whitespacing
Submitted by
padero
3
Viet Nam Phone Number
Created
·
2021-09-22 16:50
Flavor
·
ECMAScript (JavaScript)
Viet Nam Phone Number Regex. This regex include: Cellphone number: Viettel, Vinaphone, Mobiphone, Vietnamobile, Iteltelecom, Reddi (055) Telephone number (such as: 024, 028,...) Start with 0 or 84 Exactly 10 or 11 numbers
Submitted by
tuangt12
3
Ultimate markdown parser
Created
·
2023-01-02 01:50
Flavor
·
ECMAScript (JavaScript)
In order to neasting parsing work you need to run this regex multiple times on same target.
Submitted by
Mateusz Budzisz
7
simple common lisp tokenizer
Created
·
2015-03-10 16:24
Flavor
·
ECMAScript (JavaScript)
main symbols and comments are supported
Submitted by
d4rw1n1s7@gmail.com
6
Email with + symbol
Created
·
2015-09-14 18:06
Flavor
·
ECMAScript (JavaScript)
email that accepts the plus (+) symbol
Submitted by
luckcheese
4
Hibernate SQL Reductor
Created
·
2015-03-19 16:11
Flavor
·
ECMAScript (JavaScript)
If you want to understand an SQL statement for Hibernate: this replaces the selected fields in an SQL statement generated by Hibernate by a shorthand, since you usually just care about the logic. E.g. it changes select foo0_.bla as bla1_3, foo0_.bar as bar1_3, foo0_.baz1_3 as baz1_3 from ... to select foo0_.**1_3 from ...
Submitted by
Hans-Peter Stoerr www.stoerr.net
4
match brackets outside quotes
Created
·
2015-06-29 08:29
Flavor
·
ECMAScript (JavaScript)
no description available
Submitted by
Jerry
Previous page
1
2
3
4
5
6
…
174
Next page
Community Library Entry
6
Regular Expression
Created
·
2015-09-14 18:06
Flavor
·
ECMAScript (JavaScript)
/
^
(
[
_a
-
z0
-
9
]
+
[
\.
_a
-
z0
-
9
]
*
)(
\+
[
a
-
z0
-
9
]
+
)?
@
(
(
[
a
-
z0
-
9-
]
+
\.
)*
[
a
-
z
]
{2,4}
)
$
/
Open regex in editor
Description
email that accepts the plus (+) symbol
Submitted by
luckcheese