Re: Souper95 scores file not working...
Chin Huang (cthuang@io.org)
Sat, 21 Sep 1996 16:52:25 -0400 (EDT)
On Sat, 21 Sep 1996, Gregory Perron wrote:
> all {
> -1 pattern Newsgroups [^,]+,[^,]+,[^,]+,[^,]+,[^,]+,[^,]+,.*
> -1 Lines: [0-9]
> -1 Lines: [1-3][0-9]
> }
If you want the rule to match a regular expression, you must specify the
pattern keyword, otherwise the rule tries to match the literal string.
-1 pattern Lines: ^[0-9]$
-1 pattern Lines: ^[1-3][0-9]$