Re: alternates, was: scrollbar is sluggish
Hello Pat, Konstantin,
On Wednesday, December 14, 2005 at 11:06:04 -0500, Patrick Shanahan wrote:
> 2005-12-14 16:10 +0100 schrieb Konstantin Kletschke:
>> alternates ^(konsti|lists)@ku-gbr.de$ , .*@ludenkalle.de$ ,
>> ^(konsti|kletschke|lists)@synertronixx.de$
No commas, double escaping of dots, no need for quotes, no need for
explicit ".*" at the beginning (it's implicit unless ^anchored).
| alternates ^(konsti|lists)@ku-gbr\\.de$ \
| @ludenkalle\\.de$ \
| ^(konsti|kletschke|lists)@synertronixx\\.de$
> I don't believe the start-of-line and end-of-line indicators are
> necessary.
The anchors ^ and $ are usefull to make regexps as strict as
possible, to avoid false positives.
Bye! Alain.
--
Give your computer's unused idle processor cycles to a scientific goal:
The Folding@home project at <URL:http://folding.stanford.edu/>.