I have a field on a form that takes the following values: -1, 2-10, 99

I have a business rule that's concerned with answers 2-10.

I'm trying to write a regular expression that will match 2-10 but not 99, and I'm having trouble.

The original expression:

^2|3|4|5|6|7|8|9|10$

Fails because 99 is matched (technically, twice). Also, the Line boundries are something I've never been comfortable with. I oberve different behavior from them in expresso than I do in other places (e.g. .net). In this particular instance, the regex is being run in javascript. Anyway, expresso seems to ignore them (and if I put the values in brackets:

^[2|3|4|5|6|7|8|9|10]$

^[2-9]$

either "all spelled out" or as a range, expresso never returns any matches if I specify the opening line/string closing line/string characters (and yes, I was trying to match the 10 separately in the second case there).

I know, I know. If you use a regex to solve a problem, then you have two problems (and presumably they'll start inviting friends over, thing 1 and thing 2 style). I don't have to use one here; I may switch to a case statement. But it seems like I should be able to use a regex here, and it seems a reasonable thing to do. I'm still pretty green when it comes to the regex;

link|improve this question

68% accept rate
feedback

7 Answers

up vote 20 down vote accepted

You need parantheses for that. I would further use ranges to keep things readable:

^([2-9]|10)$
link|improve this answer
+1 much more concise – annakata Feb 9 '09 at 16:44
"^" and "$" should both be replaced by "\b". The meaning would be the same, but you can then globally apply it to a complete string. – Tomalak Feb 9 '09 at 17:21
feedback

This is clearly a case where you shouldn't use RegExp but numerical evaluation:

var num = parseInt(aNumber, 10);
if (num >= 2 && num <= 10) {
    alert("Match found!");
}
link|improve this answer
3  
parseInt(aNumber,10) // Don't forget the radix or you can be surprised. – some Feb 9 '09 at 16:48
well played, sir. Well played. – Learning Feb 9 '09 at 16:52
While i do agree this would be a far superior solution to regexes in most cases, an even better solution would be to constrain the input by means of UI (dropdownlist anyone?). However, the question is specifically about a regualar expression. – Kris Feb 9 '09 at 17:19
3  
Just because the question is about a regular expression doesn't mean the right answer is a well-formed regex. weblogs.asp.net/alex_papadimoulis/archive/2005/05/25/… – Randy Feb 9 '09 at 17:28
1  
@ Kris - dropdowns don't stop people from submitting any value to the server. @ gs - actually, since this is user input that's being parsed, I would consider the radix to be required here. You can never know what they'll enter. – Peter Bailey Feb 9 '09 at 18:56
show 5 more comments
feedback

Use parentheses around the alternations, since concatenation has higher precedence than alternation:

^(2|3|4|5|6|7|8|9|10)$
link|improve this answer
Or for a more compact form ^([2-9]|10)$ – Martin Brown Feb 9 '09 at 16:30
So why doesn't this match anything in Expresso? I've got numeric values liberally inserted into the sample text window, but get no matches? There must be some setting I need to tweak, but Expresso threw me off here. – peacedog Feb 9 '09 at 16:48
@Martin - you missed a trick there, seeing soulmerges answer :) – annakata Feb 9 '09 at 16:48
@peacedog - the code you posted has [ not (, which completely changes the meaning – annakata Feb 9 '09 at 16:49
@annakata - I get that, but I'm talking about Adam's answer. It doesn't work in Expresso for me. – peacedog Feb 9 '09 at 16:51
feedback

A complete javascript function to match either 2 though 9, or 10

<script type="text/javascript">
    function validateValue( theValue )
    {
    	if( theValue.match( /^([2-9]{1}|10)$/ ) )
    	{
    		window.alert( 'Valid' );
    	}
    	else
    	{
    		window.alert( 'invalid' );
    	}
    	return false;
    }
</script>

The regex is easily expanded to incorporate all of your rules:

/^(-1|[2-9]|10|99)$/ // will match -1, 2-10, 99

edit: I forgot to mention you'll have to substitute your own true/false situational logic. edit2: added missing parenthesis to 2nd regex.

link|improve this answer
Wrong. /^-1|[2-9]|10|99$/ will match -1 at the beginning of the string, or a 2,3,4,5,6,7,8,9 anywhere, or a 10 anywhere, or 99 at the end of the string. Perhaps you meant: /^(-1|[2-9]|10|99)$/ (and your first regexp is wrong too) – some Feb 9 '09 at 17:52
I just found out my testcases were not extensive enough and that makes you correct on both counts. I have adapted the snippet. – Kris Feb 10 '09 at 13:37
feedback

The reason your original expression fails is because you're matching ^2, 3, 4, 5, 6, 7, 8, 9, 10$.

Try this regex: ^(2|3|4|5|6|7|8|9|10)$

link|improve this answer
feedback

Why not a pattern that covers all your cases?

^(?:-1|[2-9]|10|99)$
link|improve this answer
feedback

This online utility is very good at generating re's for numeric ranges: http://utilitymill.com/utility/Regex_For_Range. For the range 2-10 inclusive, it gives this expression: \b0*([2-9]|10)\b. If you want to omit leading 0's, take out the "0*" part.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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