[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Here are some tips for using `.':
(foo|bar)+
and NOT this (foo|bar+)
.
The first pattern matches the words `foo' or `bar' any number of
times, e.g., it matches the text `barfoofoobarfoo'. The
second pattern matches a single instance of foo
or a single instance of
bar
followed by one or more `r's, e.g., it matches the text barrrr
.
(.|\n)
Beware that the regex (.|\n)+
will match your entire input!
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] |
This document was generated by Wolfram Kahl on September, 9 2006 using texi2html 1.76.