TextResult
 


Help

Regexp

Does not find over linebreaks.

Special characters

SymbolMeaningExample
.Any charactera.c => abc, azc, a5c
?zero or one of the preceding characterab?c => abc, ac
*zero or more of preceding characterab*c => ac, abc, abbbbbbc
+atleast one of the preceding characterab+c => abc, abbbbbbbc
{n}exactly n of the preceding characterab{5}c => abbbbbc
{n,m}n to m of the preceding characterab{2,4}c => abbc, abbbbc
[]Any of the characters inside the bracketsa[b e]c => abc, a c, aec
\Escape charactera\.c => a.c