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,740 community submitted regex patterns...
0
Mexico-CURP-search-v1
Python
Regular Expression that searches for CURP standard in Mexico. This is version 1 - 18 positions, with simple validation:`` A-ZA-Z[0-9[0-9[0-9H|MA-ZA-Z0-9
Submitted by
anonymous
-
5 years ago
0
Phone regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
UK postcode
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Find all words with 5 letters last letter z
Python
Write a regular expression which would find all words which have exactly 5 letters in them, of which the last letter is a "z".
Submitted by
anonymous
-
5 years ago
0
Find all words which have 2 characters, then EITHER OR then POINTER
Python
Write a regular expression to find all words which have the first two characters of "ab", and after that at some point EITHER a "z" or a "y", and then after that at some point an "s". The "s" does not have to be at the end of the word. So the following words are all examples of words which you sho...
Submitted by
anonymous
-
5 years ago
0
Find all words with Character and specific string and end in y
Python
Supply an appropriate regular expression which will find all words which have the character ‘a’ in them, then 0 or more characters later have the string “epe”, then 0 or more characters later have the character “y”. The “y” character must occur AT THE END of the word in question, but the first ‘a’ d...
Submitted by
anonymous
-
5 years ago
0
sample
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
point 2
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Name w/ unicode
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Insert CDATA on SVG text fields
ECMAScript (JavaScript)
For each that it founds, it inserts a <![CDATA[ ... ]]>
Submitted by
anonymous
-
5 years ago
0
Telephone number : strict international section, flexible local section for wider international and allows spaces for visual formatting
ECMAScript (JavaScript)
Telephone number strict international section :- starting with '+' or '00' flexible local section for wider international and allows spaces for visual formatting Close enough for many requirements. Tweak to match your country/circumstances better. ...
Submitted by
PS
-
5 years ago
0
Winamax Tournament History
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Bash command help flags extract
ECMAScript (JavaScript)
Extracts the flag option information from a bash 'COMMAND --help'.
Submitted by
anonymous
-
5 years ago
0
B&C integer plus eighths
ECMAScript (JavaScript)
This regular expression will match the following: 0 1-39 Integers Mixed numbers of the form x y/8 or x-y/8 where x is an integer between 1 & 9 and y is an integer between 0 & 7 xx y/8 or xx-y/8 where xx is an integer between 1 & 39 and y is an integer between 0 & 7...
Submitted by
anonymous
-
5 years ago
0
从计算表达式中分别提取含x和y的部分
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
panbaidu
Python
no description available
Submitted by
anonymous
-
5 years ago
0
IETF Locale Tag
ECMAScript (JavaScript)
For more background, refer to: http://codel10n.com/what-is-correct-locale-tag-en_us-vs-en-us/
Submitted by
anonymous
-
5 years ago
0
numbers between 100 & 99999 with optional decimal numbers, upto 2 decimal places
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
French avenue check
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Email Validator
Python
no description available
Submitted by
anonymous
-
5 years ago
1
...
191
192
193
194
195
...
287
Community Library Entry
0
Regular Expression
Golang
`
(?s)
\.
getModification
\(
\s
*
[
"'
]
(
[
\w
\-
]
+
)
[
'"
]
\s
*
,
\s
*
(
[
"'
]
[^
"
]
*
[
'"
]
|
[
+-
]
?
(?:
\d
*
[
.
]
)?
\d
+
|
true
|
false
|
False
|
True
)
(?:
\s
*
,
\s
*
(?:
true
|
false
|
\d
+
|
"
[^
"
]
*
"
)
)?
\s
*
\)
`
gm
Open regex in editor
Description
kt SDKV2
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)