Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
What about leading zeros: 001 ? – hsz Jan 31 at 9:15
no leading zeros. it can be between 1 to 100. user can enter 1 to 3 digits between 1 to 100.. – user2028437 Jan 31 at 10:14

5 Answers

up vote 0 down vote accepted

The regular expression suggested by Ali Shah Ahmed doesn't work with 1 digit numbers, this one does:

(100)|(0*\d{1,2})

Edited: If you don't want to accept the value 0 you can use this regular expression:

(100)|[1-9]\d?
share|improve this answer
Thanks. But this accepts zero. – user2028437 Jan 31 at 10:31
@user2028437: Edited my answer. – Rui Jarimba Jan 31 at 10:32

Remove all the %?. This indicates that the regex should match zero or one % characters.

share|improve this answer
I removed %?. Just now I found that I could enter '0' too. can you please tell how not to allow 0 (zero) – user2028437 Jan 31 at 10:04
Don't you want to accept numbers between 0 and 100? – orique Jan 31 at 10:06
I dont want to accept zero. but from 1 to 100. sorry for the wrong thing in the title – user2028437 Jan 31 at 10:10

I would take a multi-step approach. Wouldn't try and solve this with a regex alone. The maintenance is a nightmare.

My solution:-

Use a simple regex to determine whether the value is an integer with three or less digits.

/^\d{1,3}$/

If valid, cast to a number.

Check to see that the number is <= 100 and >= 0.

share|improve this answer
I can do this in my Controller code. But jsut want to try using REGEX – user2028437 Jan 31 at 10:31

i believe this regex will also work, and is bit simpler than the one you mentioned.

(100)|(0*\d{1,2})

this will take care of leading zeros as well.

share|improve this answer
Your regex fails if the number has only 1 digit. The correct regex would be: (100)|(0*\d{1,2}) – Rui Jarimba Jan 31 at 9:56
ohh right. let me update my answer. – Ali Shah Ahmed Jan 31 at 10:40

This allows numbers from 1 to 100:

100|[1-9]?\d
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.