in reply to Re: Reg Expression Question
in thread Reg Expression Question

That would also match 1 which is incorrect.
$i = 1; print "found\n" if $i =~ /[0|5|8|15|20]/;