Please enable JavaScript to use this web application.
Regular
Expressions
101
Social
Social
Join the Discord community!
Follow me on twitter!
Send me an email
Donate
Donate
Donate through Paypal
Become a Github Sponsor
Info
Info
Find out what's new!
RegEx101 Wiki
Report bugs or make suggestions
What's new?
Loading content...
Close
Regex Editor
Regex Editor
Community Patterns
Community Patterns
Account
Account
Regex Quiz
Regex Quiz
Settings
Settings
Live Help
Live Help
Get help on Discord
Get help on IRC
Order By
Most Recent
Highest Score
Lowest Score
Most upvotes
Most downvotes
Filter by Flavor
PCRE2 (PHP >=7.3)
PCRE (PHP <7.3)
ECMAScript (JavaScript)
Python
Golang
Java 8
.NET (C#)
Rust
Sponsors
Community Patterns
Search among 3,560 community submitted regex patterns...
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
API 文档注释的转换
ECMAScript (JavaScript)
(.)\/\/(.)
Submitted by
anonymous
-
4 months ago
2023-08-08 06:10
7
7 upvotes, 0 downvotes (score 64.6%) (You must be signed in to vote)
CSS Color Matcher
ECMAScript (JavaScript)
Pattern matching and extracting color code formats using RegEx. https://github.com/Kyza/color-regex/
Submitted by
Kyza
-
4 months ago
2023-08-07 02:36
2
2 upvotes, 0 downvotes (score 34.2%) (You must be signed in to vote)
Complete ISO 8601 Validator
ECMAScript (JavaScript)
Not only validates valid date/time, but also the number of days in a month (including leap year), and both Z and UTC offset.
Submitted by
Sillvva
-
4 months ago
2023-08-05 17:51
(Last modified 4 months ago)
2023-08-06 02:59
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
text has numbers
ECMAScript (JavaScript)
text has numbers
Submitted by
vijay
-
4 months ago
2023-08-01 06:19
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Twitch data capturing
ECMAScript (JavaScript)
Matches the data sent by the twitch IRC and captures into various groups
Submitted by
Bucky
-
4 months ago
2023-07-31 20:27
(Last modified 4 months ago)
2023-07-31 20:28
-2
0 upvotes, 2 downvotes (score 0%) (You must be signed in to vote)
Codeforces 1800A Solution
ECMAScript (JavaScript)
By inserting this regex in a programming language to test it against Codeforces 1800A you'll solve the task
Submitted by
EntityPlantt
-
4 months ago
2023-07-24 16:01
-1
0 upvotes, 1 downvotes (score 0%) (You must be signed in to vote)
匹配引号内容/match quotation mark content
ECMAScript (JavaScript)
匹配带引号内容,被引号包含的内容 结构($x) ((前引号)(内容)(后引号)) 整体内容(包含引号)...
Submitted by
诶!你的尾巴掉了
-
5 months ago
2023-07-18 01:09
(Last modified 5 months ago)
2023-07-18 01:38
0
1 upvotes, 1 downvotes (score 9.5%) (You must be signed in to vote)
Sustitution of comments (one line) //
ECMAScript (JavaScript)
Sustitution of comments (one line) // Example ~ input (before) ↓↓ : // comment textplain other-text ...
Submitted by
hzvvictor: https://github.com/hzvvictor
-
5 months ago
2023-07-17 23:03
(Last modified 5 months ago)
2023-07-17 23:06
0
1 upvotes, 1 downvotes (score 9.5%) (You must be signed in to vote)
GET country, prefix extended
ECMAScript (JavaScript)
This regex match group (country & Prefix) Separated by spaces or \s+ ↓↓ Example ↓↓ Australia 61 Dominica 1 (767) República Dominicana 1 (809/829/849) ...
Submitted by
https://github.com/hzvvictor
-
5 months ago
2023-07-17 22:35
(Last modified 5 months ago)
2023-07-17 22:41
0
1 upvotes, 1 downvotes (score 9.5%) (You must be signed in to vote)
find a 6 lenght word with 2 consecutive digits
ECMAScript (JavaScript)
ragex solution for free code camp positive-and-negative-lookahead first assertion is (?=\w{6,}) where im matching for any char (a-z0-9_) and repeating the char matching 6 times, in other words, verifying that this word has 6 char being them a-z or digits. the second assertion was more difficult to...
Submitted by
gabriel silva lima
-
5 months ago
2023-07-13 14:51
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
use-capture-groups-to-search-and-replace
ECMAScript (JavaScript)
(\w+)(\s)(\w+)\2(\w+) in this exercise we have to use capture groups and then replace the string order to 'three two one'. But first, when you are using the capture group you may have asked yourself why the code below does not work: (\w+)(\s)\1\2\1 to match the sting "one two three"...
Submitted by
gabriel silva lima
-
5 months ago
2023-07-13 14:44
2
2 upvotes, 0 downvotes (score 34.2%) (You must be signed in to vote)
Phone numbers national and local (BE exemple)
ECMAScript (JavaScript)
Phone numbers in Belgium. The pattern does match with delimiters such as [\s./-] No global length is checked Accepts number starting by 0 for local dialing Accepts number starting by + (+32 in these tests)
Submitted by
anonymous
-
5 months ago
2023-07-13 11:03
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
reuse-patterns-using-capture-groups
ECMAScript (JavaScript)
resolving the free code camp reuse-patterns-using-capture-groups problem let repeatNum = "42 42 42"; let reRegex = /^(\d+)([" "])\1\2\1$/; ^ starts with (\d+) a digit with at least one char (or else will count spaces) and have a([" "])(space) after the digit and \1 to repeat the...
Submitted by
gabriel silva lima
-
5 months ago
2023-07-13 03:14
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Month / Year Format (MM/YY)
ECMAScript (JavaScript)
/^(0[1-9]|1[0-2])\/?([0-9]{2})$/ /^(0[1-9]|1[0-2]) : First Digit - 0 second digit will be -0 to 9 ----> for Jan to Sep...
Submitted by
anonymous
-
5 months ago
2023-07-12 06:27
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Match path that starts with
ECMAScript (JavaScript)
In my nuxt automation I want to remove src from path because nuxt don't have src dir. hence I want to remove src prefix from all path
Submitted by
JD Solanki
-
5 months ago
2023-07-11 11:37
(Last modified 5 months ago)
2023-07-13 07:57
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Html tag match
ECMAScript (JavaScript)
Html tag match
Submitted by
anonymous
-
5 months ago
2023-07-10 06:59
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
legal edition of DCA
ECMAScript (JavaScript)
Extraigo la fecha del PDF de la edición legal del diario de Centroamérica
Submitted by
anonymous
-
5 months ago
2023-07-08 09:46
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
New Discord Username
ECMAScript (JavaScript)
Validates if a username is valid or not on the new discord username system
Submitted by
anonymous
-
5 months ago
2023-07-07 02:09
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Old Discord Username Match
ECMAScript (JavaScript)
Detect and capture every part of the old discord username system
Submitted by
N0de
-
5 months ago
2023-07-07 02:08
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Add quotes to a malformed JSON string
ECMAScript (JavaScript)
This Regex allows to add double-quotes to a JSON string that is missing them. It assumes we have a space after the ":" and also after the ",".
Submitted by
anonymous
-
5 months ago
2023-07-06 11:47
1
2
3
4
5
6
...
178
Laughter
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Regular Expression
ECMAScript (JavaScript)
/
\b
(
[
aei
]
*
h
*
[
aei
]
+
h
[
haei
]
+
|
[
aei
]
*
y
*
[
aei
]
+
y
[
yaei
]
*
|
o
?
l
+
o
+
l
+
[
ol
]
*
)
\b
/
gm
Open regex in editor
Description
Loading markdown...
Submitted by
Prozilla
-
6 months ago
2023-05-28 08:48