in reply to pattern to match certain numbers only?

You can't. Do something like the following:
if ( /text x="(([0-9]+)\.([0-9]))"/ && $1 % 10 == 0 ) { #... }


holli, /regexed monk/

Replies are listed 'Best First'.
Re^2: pattern to match certain numbers only?
by Anonymous Monk on Feb 20, 2006 at 15:22 UTC
    thanks for that - this will certainly help cheers