Regex don't allow two zeros at the end of a number
I am trying to implement a number input field that will not allow if the number ends with two 0's, i.e. if i enter 23100 then it shouldn't accept it. I am using regex / ^ [0-9] * 00 $ / but this allows 123100.