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 12,840 community submitted regex patterns...
1
Youtube URL Regex
PCRE (PHP <7.3)
Youtube URL validator Credit to: phuc77 The captured groups are: protocol...
Submitted by
Haroun SMIDA
-
8 years ago
1
Match youtube id
PCRE (PHP <7.3)
Match any youtube id Working with the following links : https://www.youtube.com/watch?v=DFYRQ_zQ-gk&feature=featured https://www.youtube.com/watch?v=DFYRQ_zQ-gk...
Submitted by
Haroun SMIDA
-
8 years ago
1
Javascript Literal to JSON
ECMAScript (JavaScript)
Converts a javascript literal to json format
Submitted by
Justin Echternach
-
8 years ago
1
C# replace property declaration with source to destination mapping
PCRE (PHP <7.3)
Takes a set of property declarations to use for destination and source mapping using substitution. substition example: dst.$5 = src.$5; Basic productivity tool ... I used it for creating an automapper type converter
Submitted by
Justin Echternach
-
8 years ago
1
Vimeo id from swf url
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
TRIM: Remove spaces at the begin and at the end of the string | Elimina espacios al inicio y final de la cadena de texto
PCRE (PHP <7.3)
**Removes leading and trailing spaces from the text **Example (do not consider quotes): " Lorem ipsum dolor sit " returns "Lorem ipsum dolor sit"
Submitted by
anonymous
-
8 years ago
1
Fontawesome - Icon parser (hex + title)
PCRE (PHP <7.3)
Page with icons PHP example: Generate xml for android resources header('Content-Description: File Transfer'); header("Content-Type: text/xml");...
Submitted by
IgorSkv
-
8 years ago
1
Extract Sql Columns from the given query
ECMAScript (JavaScript)
Tries to find the column names from the given SQL query.
Submitted by
anonymous
-
8 years ago
1
UTC Time Matcher
PCRE (PHP <7.3)
This expression verify an UTC time like UTC+02:00 or UTC-12:30
Submitted by
anonymous
-
8 years ago
1
SSN
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Siebel Id
Golang
no description available
Submitted by
anonymous
-
8 years ago
1
Find JSON strings in a string
ECMAScript (JavaScript)
From StackOverflow
Submitted by
anonymous
-
8 years ago
(Last modified a year ago)
1
STEAM GAME KEYS
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
HTML5 or custom element tag
ECMAScript (JavaScript)
Matches a HTML5/custom element valid tag format .
Submitted by
Shadrack Ndacayisenga
-
8 years ago
1
Decimal numbers
PCRE (PHP <7.3)
Matches decimal numbers as accepted by e.g. Octave.
Submitted by
anonymous
-
8 years ago
1
Dailymotion videos ids
PCRE (PHP <7.3)
find ids of video in dailymotion urls in text
Submitted by
anonymous
-
8 years ago
1
Strip Android Logs of Date/Time and process
PCRE (PHP <7.3)
Strip Android Logs of Date/Time and process. This helps if you want to diff 2 logs and remove the different date/time and process numbers
Submitted by
anonymous
-
8 years ago
1
RegExp that accepts English, Arabic and numbers
ECMAScript (JavaScript)
no description available
Submitted by
Momen Zakaria
-
8 years ago
1
form regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
Regex for parsing Slack Urls
ECMAScript (JavaScript)
This regex is a duplicate of another one, but with a minor modification to support subdomains with one or more "-" in it. ie:
Submitted by
Dylan
-
8 years ago
1
...
563
564
565
566
567
...
642
Community Library Entry
72
Regular Expression
Recommended
ECMAScript (JavaScript)
/
(?:
(
[
+
]
\d
{1,4}
)
[
-.
\s
]
?
)?
(?:
[
(
]
(
\d
{1,3}
)
[
)
]
[
-.
\s
]
?
)?
(
\d
{1,4}
)
[
-.
\s
]
?
(
\d
{1,4}
)
[
-.
\s
]
?
(
\d
{1,9}
)
/
g
Open regex in editor
Description
Detects most of the phone numbers all over the world
Submitted by
Aditya Joshi
-
11 years ago
(Last modified a year ago)