vote up 1 vote down star

I haven't used regular expressions at all, so I'm having difficulty troubleshooting. I want the regex to match only when the contained string is all numbers; but with the two examples below it is matching a string that contains all numbers plus an equals sign like "1234=4321". I'm sure there's a way to change this behavior, but as I said, I've never really done much with regular expressions.

        string compare = "1234=4321";
        Regex regex = new Regex(@"[\d]");

        if (regex.IsMatch(compare))
        { 
            //true
        }

        regex = new Regex("[0-9]");

        if (regex.IsMatch(compare))
        { 
            //true
        }

In case it matters, I'm using C# and .NET2.0.

flag

5 Answers

vote up 14 vote down check

Use the beginning and end anchors.

Regex regex = new Regex(@"^\d$");

Use "^\d+$" if you need to match more than one digit.

EDIT: Use "^[0-9]+$" to restrict matches to Arabic numerals.

link|flag
Realize that this solution will also match numbers outside the 0-9 range since Unicode defines more than just 10 numbers. See moserware.com/2008/02/… – Jeff Moser Nov 7 '08 at 18:57
@Jeff Moser: Thanks, I edited my answer. I was not aware of this issue with the \d shorthand. – Bill the Lizard Nov 7 '08 at 19:02
vote up 1 vote down

Do you need to match numbers or digits? For example: 123.456 is a number, but it's not all digits.

link|flag
vote up 0 vote down

^\d+$, which is "start of string", "1 or more digits", "end of string" in English.

link|flag
vote up 3 vote down

Your regex will match anything that contains a number, you want to use anchors to match the whole string and then match one or more numbers:

regex = new Regex("^[0-9]+$");

The ^ will anchor the beginning of the string, the $ will anchor the end of the string, and the + will match one or more of what precedes it (a number in this case).

link|flag
vote up 5 vote down

It is matching because it is finding "a match" not a match of the full string. You can fix this by changing your regexp to specifically look for the beginning and end of the string.

^\d+$
link|flag

Your Answer

Get an OpenID
or

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