Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a regular expression which can accept any value from 1 to 99 and does not accept any negative values. So far, I have:

"regex":/^[A-Za-z0-9]{3}[0-9]{6,}$/,
share|improve this question

2 Answers

up vote 11 down vote accepted

This should work:

[1-9][0-9]?

If you want the whole string to be just a number, you need the ^$ included:

^[1-9][0-9]?$

That depends whether this is the whole regexp, or you want it to be a part of the bigger regexp.

share|improve this answer
Better than mine - with the caveat that it only requires a number from 1-99 somewhere on the line rather than matching the whole string. So, /^[1-9][0-9]?$/ would be better. – Jonathan Leffler Nov 16 '10 at 14:50
@Jonathan Thanks for the support! – icyrock.com Nov 16 '10 at 14:51
Just add ^ and $ to the ends :) – J V Nov 16 '10 at 14:51
@J V From what he said, it seems it's a part of a bigger regexp, but you are correct, I'll edit. – icyrock.com Nov 16 '10 at 14:53
1  
@Derby Yes, it will. It will only match one or two digits, the first being non-zero. For negative numbers, you need -, which the above will reject, as it's not a digit. – icyrock.com Nov 16 '10 at 15:14
show 1 more comment

If you want 1..99, then you probably want to use:

/^[1-9]|[1-9][0-9]$/
share|improve this answer
Will this overcome in not accepting negative values – Someone Nov 16 '10 at 15:05
@Derby: yes - it does not allow '-' as a valid character, so negative values are not accepted. – Jonathan Leffler Nov 16 '10 at 15:46

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.