I need a regular expression pattern that matches any number including 1-9 numbers except 2?
My attempt:
([1-9][^2])
But this doesn\'t w
Another way to do it:
/[^\D2]/
Which means, not a non-digit or 2.