I have the regex that accept number between 1 and 100. But it accepting the special character '%'
This is the regex that I am using
^(0*100{1,1}\\.?((?<=\\.)0*)?%?$)|(^0*\\d{0,2}\\.?((?<=\\.)\\d*)?%?)$'
I dont want to accept % Can anyone please help me in fixing this.