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 9,640 community submitted regex patterns...
0
flight number
PCRE (PHP <7.3)
recognize a flight number define in wikipedia and capture carrier code and flight number. source
Submitted by
anonymous
-
7 years ago
0
* = (0 a n vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
+ = (1 a n vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
? = (0 a 1 vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
{3} = (Obrigatoriamente 3 vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
{2,} = (2 vezes ou n vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
{1,2} = (1 vez ou 2 vezes);
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
.
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
\s
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
\S
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
\d
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
\D
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
\w
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
\W
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
^ = Início da string;
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
$ = Fim da string;
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
() = Determina quais grupos serão capturados;
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
(?:) = Determina quais grupos 'NÃO' serão capturados;
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
(?=) = Sucedido por algum conjunto de caracteres;
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
(?<=) = Precedido por algum conjunto de caracteres;
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
1
...
24
25
26
27
28
...
482
Asciidoc PlantUML Block
2
Regular Expression
Java 8
"
\[
(
plantuml
.
+
)
\]
\s
+
\.
{4}
\s
(
[
\s\S
]
+
?
(?=
^
\.
{4}
)
)
\.
{4}
"
gm
Open regex in editor
Description
Regex to select PlantUML Block in Asciidoc documents
Submitted by
anonymous
-
2 years ago