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...
0
LastName, FirstName MiddleName(s), Suffix
ECMAScript (JavaScript)
This Regex parses out the LastName, FirstName, MiddleName(s) (optional) and Suffix (optional). The String must have at least two words separated by a comma to match.
Submitted by
Ryan Toner
-
3 years ago
0
Wordle Result
Golang
A Regular Expression for the result of a Wordle, that can be shared after completing the Wordle of the Day.
Submitted by
Varun R Gupta
-
3 years ago
0
Match semantic version (numbers only)
PCRE2 (PHP >=7.3)
Match a semantic version string, but numbers only (e.g. 1.2.3). Ignore things like dev, patch, src, etc.
Submitted by
Geddings
-
3 years ago
0
regex_bl_fees_types
PCRE2 (PHP >=7.3)
guif
Submitted by
guif
-
3 years ago
0
Title Firstname Middlename Lastname, Suffix
ECMAScript (JavaScript)
This raged parses out the Title (optional) Firstname Middlename(s) (optional) Lastname (optional) and Suffix (optional)
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
/@d.+e\s[[].+[\]]/gm
ECMAScript (JavaScript)
using this library, you can search for substrings of the type in a string: @delete [user_name]
Submitted by
Developer bot(my programs: https://replit.com/@developer)
-
3 years ago
0
/@.+k\s[[].+[\][msg:\s"].+"[\]]/gi
ECMAScript (JavaScript)
looking for lines like: *@block user
Submitted by
Developer bot
-
3 years ago
0
Escape sequence
ECMAScript (JavaScript)
Matches on escape sequences only. \b Backspace \f Form Feed \n New Line \r Carriage Return \t Horizontal Tabulator...
Submitted by
anonymous
-
3 years ago
0
hex string split by blank
ECMAScript (JavaScript)
match like aa bb cc dd ee ff 00 aa 13 0 1 2 3 aa
Submitted by
Victor Lin
-
3 years ago
0
International Standard Book Number
PCRE2 (PHP >=7.3)
This pattern checks for the format according to the International ISBN Agency standard e.g. '978-3-16-148410-0'. Source: https://www.oreilly.com/library/view/regular-expressions-cookbook/9781449327453/ch04s13.html. NOTE: it does not validate if it is an actual ISBN number. It only validates the fo...
Submitted by
Regular Expressions Cookbook, 2nd Edition by Jan Goyvaerts, Steven Levithan
-
3 years ago
0
Captures everything until the first hashtag
ECMAScript (JavaScript)
This captures everything from the start until the first hashtag.
Submitted by
Praeses
-
3 years ago
0
password complexity pattern
ECMAScript (JavaScript)
be at least 8 characters with at least 1 Capital , 1 Lowercase , 1 special char , 1 number
Submitted by
founet
-
3 years ago
0
get numbers removing zeros from left
ECMAScript (JavaScript)
oq?
Submitted by
anonymous
-
3 years ago
0
Match any pattern abc.def.***.uvw.xyz hackerRank
Java 8
This regex matches any pattern like in the title. HackerRank challenge modified.
Submitted by
anonymous
-
3 years ago
0
Nginx rewrite rule to match all urls except .well-known (letsencrypt challenge validation)
PCRE2 (PHP >=7.3)
Will match typical urls such as: / /somepage /some/nested/page Will not match URLs starting with...
Submitted by
anonymous
-
3 years ago
0
Наличие слова без учета регистра в тексте
.NET 7.0 (C#)
Наличие слова без учета регистра в тексте
Submitted by
anonymous
-
3 years ago
0
Password
PCRE2 (PHP >=7.3)
Vérifie si le mot de passe contient Entre 8 - 50 caractères 1 majuscule 1 minuscule 1 symbole
Submitted by
anonymous
-
3 years ago
0
match mail adress
PCRE2 (PHP >=7.3)
match mail adress
Submitted by
anonymous
-
3 years ago
0
Calcul detect
PCRE2 (PHP >=7.3)
Find operation in string (used in my personnal project)
Submitted by
anonymous
-
3 years ago
0
Messages
ECMAScript (JavaScript)
Show messages
Submitted by
Bot
-
3 years ago
1
...
805
806
807
808
809
...
900
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
(
[
\d
,.
]
{1,}
)+
(
(
[
\/
*+-
]
{1}
)
(
[
\d
,.
]
{1,}
)
){0,}
/
gm
Open regex in editor
Description
Find operation in string (used in my personnal project)
Submitted by
anonymous
-
3 years ago