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 12,860 community submitted regex patterns...
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Additional
PCRE (PHP <7.3)
Splitting Additionalname in Basename and Specification
Submitted by
JK
-
3 months ago
2023-07-13 07:57
(Last modified 2 months ago)
2023-07-19 09:43
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
-
3 months ago
2023-07-13 14:44
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
-
2 months ago
2023-07-31 20:27
(Last modified 2 months ago)
2023-07-31 20:28
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
-
2 months ago
2023-08-01 06:19
-3
0 upvotes, 3 downvotes (score 0%) (You must be signed in to vote)
Xml parser
PCRE (PHP <7.3)
Captures TagName, attributes and value in seperate groups. Apply same pattern on capture group #3 (using recursion) to parse entire xml! Apply regex defined in teststring to capture group #2 to parse all the attributes for the current tag.
Submitted by
veryanonymous
-
7 years ago
2016-05-19 22:25
-3
0 upvotes, 3 downvotes (score 0%) (You must be signed in to vote)
Xml Parser
PCRE (PHP <7.3)
Captures TagName, attributes and value in seperate groups. --- Apply same pattern on capture group #3 (using recursion) to parse entire xml! --- Apply regex defined in teststring to capture group #2 to parse all the attributes for the current tag.
Submitted by
veryanonymous
-
7 years ago
2016-05-19 22:47
-3
0 upvotes, 3 downvotes (score 0%) (You must be signed in to vote)
Xml Parser!
PCRE (PHP <7.3)
Captures TagName, attributes and value in seperate groups. --- Apply same pattern on capture group #3 (using recursion) to parse entire xml! --- Apply regex defined in teststring to capture group #2 to parse all the attributes for the current tag.
Submitted by
veryanonymous
-
7 years ago
2016-05-19 23:00
-3
0 upvotes, 3 downvotes (score 0%) (You must be signed in to vote)
iOS.Strings
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
2015-06-23 15:27
-3
0 upvotes, 3 downvotes (score 0%) (You must be signed in to vote)
XmlnsDefinition
PCRE (PHP <7.3)
Get ClrNamespace and optional AssemblyName from XmlnsDefinition in xaml
Submitted by
Ivanov Anton
-
8 years ago
2016-02-19 14:53
1
...
640
641
642
643
URL Validator
12
75 upvotes, 63 downvotes (score 46%) (You must be signed in to vote)
Regular Expression
PCRE (PHP <7.3)
/
(
(
(
ftp
|
http
|
https
)
:
\/\/
)
|
(
\/
)
|
(
..
\/
)
)
(
\w
+
:
{0,1}
\w
*
@
)?
(
\S
+
)
(
:
[
0
-
9
]
+
)?
(
\/
|
\/
(
[
\w
#!:.?+=&%@!
\-\/
]
)
)?
/
Open regex in editor
Description
Loading markdown...
Submitted by
anonymous
-
9 years ago
2014-09-24 08:41