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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 11,880 community submitted regex patterns...
0
Слова які починаються та закінчуються одинаково
PCRE2 (PHP >=7.3)
Слова які починаються та закінчуються одинаково
Submitted by
DJI
-
3 years ago
0
HTML code to HTML entity
PCRE (PHP <7.3)
Quick basic match for the conversion of an html code for the registered symbol to an html entity
Submitted by
Matthew Baker
-
3 years ago
0
найдет все числа и отрицательные и положительные в строке
PCRE2 (PHP >=7.3)
` const s = '23+-22.2222+-2334+5-5/225-8'; const re = /(?!:\W)(\-)?(\d+)[.]?(\d+)?/gm; console.log ( s.match ( re ) ); //[ '23', '-22.2222', '-2334', '5', '-15', '22', '5', '-8' ] `
Submitted by
Kasap Victor
-
3 years ago
0
Replace Percentage with dot, for comma and remove percent symbol
PCRE (PHP <7.3)
Substituir uma porcentagem "3.78%" por "3,78"
Submitted by
anonymous
-
3 years ago
0
Cities
PCRE2 (PHP >=7.3)
Cities
Submitted by
anonymous
-
3 years ago
0
Regex to match 1000, >1000, >=1000, =1000, <=1000, ~1000
PCRE2 (PHP >=7.3)
Regex to match special characters followed by a specific number(1000)
Submitted by
Mehul Thakkar
-
3 years ago
0
Performa
PCRE (PHP <7.3)
/^(?P0|[1-9]\d)\.(?P0|[1-9]\d)\.(?P0|[1-9]\d)(?:-(?P(?:0|[1-9]\d|\da-zA-Z-)(?:\.(?:0|[1-9]\d|\da-zA-Z-))))?(?:\+(?P[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/gm
Submitted by
anonymous
-
3 years ago
0
Extract words start with _ and end with ;
PCRE2 (PHP >=7.3)
Extract words start with _ and end with ;
Submitted by
Ashish Shah
-
3 years ago
0
Match all movie titles containing a word ending in 'tes'
PCRE2 (PHP >=7.3)
Regex quiz in python. Match all movie titles containing a word ending in 'tes'
Submitted by
Teddy Petrou
-
3 years ago
0
CPF
PCRE (PHP <7.3)
Regra de validação de CPF.
Submitted by
anonymous
-
3 years ago
0
find matched words
PCRE2 (PHP >=7.3)
find matched words
Submitted by
fajar
-
3 years ago
0
CFF-definitions.reference.issn
PCRE2 (PHP >=7.3)
Pattern for validating a definitions.reference.issn value in the Citation File Format (CFF)
Submitted by
Stephan Druskat, Jurriaan H. Spaaks
-
3 years ago
0
CFF-definitions.reference.languages
PCRE2 (PHP >=7.3)
Pattern for validating definitions.reference.languages values in the Citation File Format (CFF)
Submitted by
Stephan Druskat, Jurriaan H. Spaaks
-
3 years ago
0
CFF-definitions.reference.pmcid
PCRE2 (PHP >=7.3)
Pattern for validating a definitions.reference.pmcid value in the Citation File Format (CFF)
Submitted by
Stephan Druskat, Jurriaan H. Spaaks
-
3 years ago
0
CFF-definitions.swh-identifier
PCRE2 (PHP >=7.3)
Pattern for validating a definitions.swh-identifier value in the Citation File Format (CFF)
Submitted by
Stephan Druskat, Jurriaan H. Spaaks
-
3 years ago
0
Cron regex
PCRE2 (PHP >=7.3)
cron regular expression
Submitted by
anonymous
-
3 years ago
0
Match first letter of words for names
PCRE (PHP <7.3)
Also matches the first letter after ' or -
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
extract words separated by specific words
PCRE2 (PHP >=7.3)
Extract words separated by specific words
Submitted by
Archon
-
3 years ago
0
Not ending with png
PCRE2 (PHP >=7.3)
Not ending with png
Submitted by
Archon
-
3 years ago
0
Semver
PCRE (PHP <7.3)
Public library
Submitted by
Masoud shokohi
-
3 years ago
1
...
514
515
516
517
518
...
594
Moneda con string v3
1
Regular Expression
PCRE (PHP <7.3)
/
^
(
[
"'
]
?
)
(
\$
?
(
[
0
-
9
]
{1,3}
,
(
[
0
-
9
]
{3}
,
?
)*
[
0
-
9
]
{3}
|
[
0
-
9
]
{1,3}
)
(
(
.
[
0
-
9
]
{0,3}
)
[
0
-
9
]
{0,10}
)?
)
\1
$
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
4 years ago