> body PND_STOCK_PAYI
> /[^a-z](P[^a-z]{0,4}A[^a-z]{0,4}Y[^a-z]{0,4}I[^a-z]
> Pay88)/i
>
> (all on one line of course).
>
> In SA3.2.5, I get the following message:
>
> [5183] info: config: invalid regexp for rule
> PND_STOCK_PAYI: /[^a-z
> (P[^a-z]{0,2}A[^a-z]{0,2}Y[^a-z]{0: missing or invalid
> delimiters
>
> With SA3.1.7, there's no problem.
>
>
> /Per Jessen, Zürich
The regexp as shown is not the same as in the error message.
The code shows items like {0,4} while in the error message they are {0,2}
The code the last characters of the rule are "Pay88)/i", while in the regexp in
error message has last characters as "[^a-z]{0".
The error is not from the regexp you think it is.