uitleg over patterns van sven

This commit is contained in:
Ward Wouts 2005-02-24 09:02:24 +00:00
parent 6eb30ec4e6
commit 29dbc0d387

View file

@ -1,4 +1,4 @@
# $Dwarf: README,v 1.17 2005/02/05 11:58:56 ward Exp $
# $Dwarf: README,v 1.18 2005/02/05 12:00:39 ward Exp $
# $Source$
Ripnews is a bulk downloader for usenet. It's quite flexible in terms of
@ -151,6 +151,12 @@ group multiple blocks into one by enclosing them with ()'s. So while
sensitive 'OPT_I=(?i)(foo|bar)' will match both 'foo' and 'bar' case
insensitivly.
Caveat: if for some reason you use a | at the end of a list of patterns
(for instance: OPT_X=(?i)(foo|bar|) ) the pattern will also match an
empty string. This can have the result that you exclude everything if
you use it with OPT_X, or include everything with OPT_I. You have been
warned.
Other features:
===============