Show Menu
Cheatography

Expressões Regulares Cheat Sheet (DRAFT) by

Expressões Regulares - Lista de Dicas

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Âncoras

^
Início da string ou início da string com várias linhas
\A
início da string
$
Fim da string ou fim da string com várias linhas
\Z
Fim da string
\b
Limite da palavra
\B
Sem limite da palavra
\<
Início da palavra
\>
Fim da palavra
 

Asserções

?=
Lookahead assertion
?!
Negative lookahead
?<=
Lookbehind assertion
?!= or ?<!
Negative lookbehind
?>
Once-only Subexp­ression
?()
Condition [if then]
?()|
Condition [if then else]
?#
Comment