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

i have a good question, i couldnt find any answers so far, so im asking here...

The problem is this, im using a regular expression to validate certain format in a string, this string will become in a rule for a game.

Example: "DX 3" is a rule, but "DX 14" could be a rule too... I know how to look at the string and find one or more "numbers" so... the problem is, that the regex can find 34 too, and this number is out of "range" for the rule...

I'm missing something about the regex to do this? Or is not possible at all?

Thanks a lot!

share|improve this question
What is the range you need? – npinti Oct 22 '11 at 18:28

2 Answers

up vote 8 down vote accepted

Unfortunately there's no easy way to define ranges in regex. If you are to use the range 1-23 you'll end up with a regex like this:

([1-9]|1[0-9]|2[0-3])

Explanation:

  1. Either the value is 1-9
  2. or the value starts with 1 and is followed with a 0-9
  3. or the value starts with 2 and is followed with a 0-3
share|improve this answer
Thanks a lot! I was trying that but i wasnt using the "( )" – user986056 Oct 22 '11 at 18:39

It is not that short, and not flexible.

If you search for 1 to 19, you can search for "DX 1?[0-9]", for example, but if it doesn't end at a number boundary, it get's ugly pretty soon, and changing the rules is not flexible.

Splitting the String at the blank, and then using x > 0 and x < 24 is better to understand and more flexible.

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.