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 5,940 community submitted regex patterns...
0
Date Validation
ECMAScript (JavaScript)
no description available
Submitted by
Ashish
-
9 years ago
0
Match all strings that ends with more than 3 numbers
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
3 digit number between 82-104
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
CPF/CNPJ - Com/Sem máscara
ECMAScript (JavaScript)
Valida se é um CPF ou um CNPJ válido, independente da máscara
Submitted by
Victor A. de O. Neto
-
9 years ago
0
Xml Start Cleaner
ECMAScript (JavaScript)
Selects Xml version and Encoding and whitespaces
Submitted by
Edward Coughlan
-
9 years ago
0
phone number russia
Python
phone number without spaces or hyphens +7YYYXXXXXXX
Submitted by
vscoder
-
9 years ago
0
URL Query String Parser
ECMAScript (JavaScript)
Parses a URL query string (ignores anything after #) and returns parameters and values separately.
Submitted by
Ross Tracy
-
9 years ago
0
Website URL
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
int or Float 3 decimal values
ECMAScript (JavaScript)
Accepts only integer or Flating values upto 3 decimals. To accept n decimals change (1,n)
Submitted by
Shanky
-
9 years ago
0
Unicode alphanumeric (any language) with whitespaces
ECMAScript (JavaScript)
Match any alphanumeric string in any language. White spaces are allowed. (Usefull for ECMAScript 5)
Submitted by
Angelos Gkountis
-
9 years ago
0
Integers
ECMAScript (JavaScript)
Positive or negative. 0 is allowed but may not be a leading digit.
Submitted by
anonymous
-
8 years ago
-1
text beetween text
Python
no description available
Submitted by
karol
-
10 years ago
-2
email
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
11 years ago
-2
Detect HTML Linebreak Tags
ECMAScript (JavaScript)
Detect various possible HTML linebreak tags (eg. )
Submitted by
@benhodgson
-
9 years ago
-2
Between two strings
Python
Awesome explanation of nested lookbacks
Submitted by
OnlineCop
-
9 years ago
-3
Matches percentage with any number of digits
Python
Only captures value for converting percentage to decimal. Returns empty if percentage but no value. no match = no percentage found
Submitted by
sharkey
-
9 years ago
0
Phone area code - prefix - number
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
11 years ago
0
adding space after (.) period and next word
ECMAScript (JavaScript)
Requirement was to check if there is space between . and next text and if not the then add space
Submitted by
Prajkta
-
11 years ago
0
filename split
ECMAScript (JavaScript)
Splitting file names
Submitted by
Miloš Ratković
-
10 years ago
0
Telephone Number Simple
ECMAScript (JavaScript)
no description available
Submitted by
Nemesarial
-
10 years ago
1
...
191
192
193
194
195
...
297
Community Library Entry
0
Regular Expression
Golang
`
^
(
\d
+
(?:
\.
\d
{1,3}
)?
)
`
gm
Open regex in editor
Description
Trying to get digits
Submitted by
Arthur Silva
-
a year ago