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 18,000 community submitted regex patterns...
1
Extract the only the Nth field from a delimited string
PCRE (PHP <7.3)
The aim of this regex is to extract only the Nth field from a delimited string. In the example provided the delimited is the pipe character. You will have to substitute the pipe character for whatever delimiter you are using.
Submitted by
0jag
-
7 years ago
1
Remove Markdown Links
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
1
Make PHP var_dump() output more compact
PCRE (PHP <7.3)
The PHP function var_dump() provides debugging output, but has more line-breaks than is needed for readability. This regex strips out the (in my eyes) unnecessary line-breaks. Good in a self written debugging method in combination with ob_start()and ob_get_contents().
Submitted by
Doqnach
-
7 years ago
1
URL Slugs Optimized
PCRE (PHP <7.3)
This slug regex is optimized using strictly my own opinions. Slugs: Should be english, alphanumeric phrases separated with a single dash. Should not contain single alpha character between dashes. ...
Submitted by
Jordon Baade
-
7 years ago
1
A revised e-mail validation regular expression
PCRE (PHP <7.3)
This one allows to begin with a digit, however, sometimes e-mail should begin with an *English letter *
Submitted by
anonymous
-
7 years ago
1
Date checker for X values
ECMAScript (JavaScript)
Work in progress
Submitted by
anonymous
-
7 years ago
1
Youtube ID Extractor
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
1
Telegram bot deep linking
PCRE (PHP <7.3)
Telegram bot deep linking Telegram bots have a deep linking mechanism, that allows for passing additional parameters to the bot on startup. It could be a command that launches the bot — or an auth token to connect the user's Telegram account to their account on some external service. ...
Submitted by
SadeghPM@gmail.com
-
7 years ago
1
Phone numbers and/or extensions(relaxed)
ECMAScript (JavaScript)
Useful for phone number extraction
Submitted by
hslayer
-
7 years ago
1
Localhost/private ip origin check
PCRE (PHP <7.3)
Used by CORS to check for localhost/private IP origins Check out the unit tests at /r/2Ofume/1/tests
Submitted by
ngokimphu
-
7 years ago
1
Formatar CPF
PCRE (PHP <7.3)
Retorna um cpf no formato 123.456.789-11. Cpf de entrada deve conter apenas números
Submitted by
anonymous
-
7 years ago
1
Matching email addresses per RFC5322
PCRE (PHP <7.3)
The BNF rules from RFC 5322 transformed to PCRE by Nikita Popov and described in the post http://nikic.github.io/2012/06/15/The-true-power-of-regular-expressions.html.
Submitted by
Michael Musson
-
7 years ago
1
Word Wrap examples
PCRE2 (PHP >=7.3)
Four examples of word wrapping at the 80 character mark, each one taking fewer steps than the last. Comment and uncomment lines with # to see the difference between versions. Optimization discussions welcome!
Submitted by
OnlineCop
-
7 years ago
(Last modified a year ago)
1
Matching an Saudi Postal Code
PCRE (PHP <7.3)
Saudi Postal Code has five digits, if you would to have more information check the below: +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ First Digit (Postal Regions): "The postal region number is represented by the first digit of the postal code" ...
Submitted by
Fares Alarabi
-
7 years ago
1
Email matching with a grain of salt
PCRE (PHP <7.3)
Inspired by Micheal Musson entry Wich was hard to use in regex flavours that don't support recursion (C# engine doesn't) i've build my own simpler version wich matches what i would accept as validation entry
Submitted by
Luigi Trabacchin
-
7 years ago
1
Basic DOI
Python
no description available
Submitted by
anonymous
-
7 years ago
1
Contraseña Fuerte
PCRE (PHP <7.3)
Valida que la contraseña deba estar compuesta por una mayúscula, minúscula y números con un rango de caracteres desde 8 hasta 16 dígitos. Ejemplo Aropd123 Argpd 123
Submitted by
Nelson Wandurraga
-
7 years ago
1
Unix ANSI escape codes
PCRE (PHP <7.3)
Unix ANSI escape codes Hi , in my Terminal project in want a method to find (Unix ANSI escape codes) and run its command. For More information : https://en.wikipedia.org/wiki/ANSI_escape_code...
Submitted by
Shahin Pendar , shahinpendar@gmail.com
-
7 years ago
1
Check list of integers numbers separated by comma
PCRE (PHP <7.3)
Check list of integers numbers separated by comma Ex: "1, 2, 4, 6" >> OK "99" >> OK "a, b, c" >> WRONG...
Submitted by
anonymous
-
7 years ago
1
French Phone Number Validation
PCRE (PHP <7.3)
Accept several kind of format, more or less usual. And refuse incorrect formats. Prefix: 0033 / +33 / (0) / 0 Number: collapsed / group by 2 / group by 3 Separator: space / dot / dash
Submitted by
RonanKER
-
7 years ago
1
...
229
230
231
232
233
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(
\d\d
:
\d\d
-
\d\d
:
\d\d
)
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
5 years ago