First page
Back
Continue
Last page
Overview
regex Combinations
Regular expressions are most useful in combination with each other
.*
zero or more of any character
[a-Z]*
zero or more letters
\<cat\>
the word 'cat'
ab..ef
ab and ef separated by two chars
.\{32\}
32 of any character
\*
a literal asterisk