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

In my limited experience, I've been on several projects that have had some sort of string utility class with methods to determine if a given string is a number. The idea has always been the same, however, the implementation has been different. Some surround a parse attempt with try/catch

public boolean isInteger(String str) {
    try {
        Integer.parseInt(str);
        return true;
    } catch (NumberFormatException nfe) {}
    return false;
}

and others match with regex

public boolean isInteger(String str) {
    return str.matches("^-?[0-9]+(\\.[0-9]+)?$");
}

Is one of these methods better than the other? I personally prefer using the regex approach, as it's concise, but will it perform on par if called while iterating over, say, a list of a several hundred thousand strings?

Note: As I'm kinda new to the site I don't fully understand this Community Wiki business, so if this belongs there let me know, and I'll gladly move it.

EDIT: With all the TryParse suggestions I ported Asaph's benchmark code (thanks for a great post!) to C# and added a TryParse method. And as it seems, the TryParse wins hands down. However, the try catch approach took a crazy amount of time. To the point of me thinking I did something wrong! I also updated regex to handle negatives and decimal points.

Results for updated, C# benchmark code:

00:00:51.7390000 for isIntegerParseInt
00:00:03.9110000 for isIntegerRegex
00:00:00.3500000 for isIntegerTryParse

Using:

static bool isIntegerParseInt(string str) {
    try {
        int.Parse(str);
        return true;
    } catch (FormatException e){}
    return false;
}

static bool isIntegerRegex(string str) {
    return Regex.Match(str, "^-?[0-9]+(\\.[0-9]+)?$").Success;
}

static bool isIntegerTryParse(string str) {
    int bob;
    return Int32.TryParse(str, out bob);
}
share|improve this question
I think TryParse is the best way – Barbaros Alp Sep 2 '09 at 17:36
What are your expected inputs? Are you expecting that 99% of the time the string will be a number, and only 1% of the time it won't be? Or is it the other way around? You want to optimize the code branch that is actually going to be exercised in most cases. – Daniel Pryden Sep 2 '09 at 17:49
Added, then remove c# tag. :) – Dan Atkinson Sep 2 '09 at 18:01
A small question to your regex: "3.0" is an integer? Just for me 3.0 == 3 :) However I don't know all your specific needs... – Mihail Sep 2 '09 at 18:11
Comunity wiki are for questions that don't have a specific (unique) correct answer – voyager Sep 2 '09 at 18:17
show 1 more comment

14 Answers

up vote 10 down vote accepted

I just ran some benchmarks on the performance of these 2 methods (On Macbook Pro OSX Leopard Java 6). ParseInt is faster. Here is the output:

This operation took 1562 ms.
This operation took 2251 ms.

And here is my benchmark code:


public class IsIntegerPerformanceTest {

    public static boolean isIntegerParseInt(String str) {
        try {
            Integer.parseInt(str);
            return true;
        } catch (NumberFormatException nfe) {}
        return false;
    }

    public static boolean isIntegerRegex(String str) {
        return str.matches("^[0-9]+$");
    }

    public static void main(String[] args) {
    	long starttime, endtime;
    	int iterations = 1000000;
    	starttime = System.currentTimeMillis();
    	for (int i=0; i<iterations; i++) {
    		isIntegerParseInt("123");
    		isIntegerParseInt("not an int");
    		isIntegerParseInt("-321");
    	}
    	endtime = System.currentTimeMillis();
    	System.out.println("This operation took " + (endtime - starttime) + " ms.");
    	starttime = System.currentTimeMillis();
    	for (int i=0; i<iterations; i++) {
    		isIntegerRegex("123");
    		isIntegerRegex("not an int");
    		isIntegerRegex("-321");
    	}
    	endtime = System.currentTimeMillis();
    	System.out.println("This operation took " + (endtime - starttime) + " ms.");
    }
}

Also, note that your regex will reject negative numbers and the parseInt method will accept them.

share|improve this answer
What about int.TryParse()? Can we assume that it is exactly the same in terms of performance as the first try/catch? – Dan Atkinson Sep 2 '09 at 17:59
Alas, this isn't C# code! lol! – Dan Atkinson Sep 2 '09 at 18:02
Its my understanding that you should compile the regex only once, and then call pattern.matcher(s).matches(). That should be faster than building the regex every time. Also, your test may behave differently depending on the input strings. If most of the time you do not receive ints, my guess is that the regex should be faster. – Fermin Silva Apr 26 at 17:50

Personally I would do this if you really want to simplify it.

public boolean isInteger(string myValue)
{
    int myIntValue;
    return int.TryParse(myValue, myIntValue)
}
share|improve this answer

You could create an extension method for a string, and make the whole process look cleaner...

public static bool IsInt(this string str)
{
    int i;
    return int.TryParse(str, out i);
}

You could then do the following in your actual code...

if(myString.IsInt())....
share|improve this answer

Using .NET, you could do something like:

private bool isNumber(string str)
{
    return str.Any(c => !char.IsDigit(c));
}
share|improve this answer
1  
This would tell you that -4 is not a number, but I'm pretty sure that it is. – Jim Kiley Aug 13 '12 at 20:17

Here is our way of doing this:

public boolean isNumeric(String string) throws IllegalArgumentException
{
   boolean isnumeric = false;

   if (string != null && !string.equals(""))
   {
      isnumeric = true;
      char chars[] = string.toCharArray();

      for(int d = 0; d < chars.length; d++)
      {
         isnumeric &= Character.isDigit(chars[d]);

         if(!isnumeric)
         break;
      }
   }
   return isnumeric;
}
share|improve this answer

I needed to refactor code like yours to get rid of NumberFormatException. The refactored Code:

public static Integer parseInteger(final String str) {
    if (str == null || str.isEmpty()) {
        return null;
    }
    final Scanner sc = new Scanner(str);
    return Integer.valueOf(sc.nextInt());
}

As a Java 1.4 guy, I didn't know about java.util.Scanner. I found this interesting article:

http://rosettacode.org/wiki/Determine_if_a_string_is_numeric#Java

I personaly liked the solution with the scanner, very compact and still readable.

share|improve this answer
Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – oers Feb 9 '12 at 13:21
Thanks for the input. I have changed the post. – Heiner Jun 22 '12 at 12:30

Some languages, like C#, have a TryParse (or equivalent) that works fairly well for something like this.

public boolean IsInteger(string value)
{
  int i;
  return Int32.TryParse(value, i);
}
share|improve this answer

If absolute performance is key, and if you are just checking for integers (not floating point numbers) I suspect that iterating over each character in the string, returning false if you encounter something not in the range 0-9, will be fastest.

RegEx is a more general-purpose solution so will probably not perform as fast for that special case. A solution that throws an exception will have some extra overhead in that case. TryParse will be slightly slower if you don't actually care about the value of the number, just whether or not it is a number, since the conversion to a number must also take place.

For anything but an inner loop that's called many times, the differences between all of these options should be insignificant.

share|improve this answer

I use this but I liked Asaph's rigor in his post.

public static bool IsNumeric(object expression)
{
if (expression == null)
return false;

double number;
return Double.TryParse(Convert.ToString(expression, CultureInfo.InvariantCulture),   NumberStyles.Any,
NumberFormatInfo.InvariantInfo, out number);
}
share|improve this answer

Similar to a few others, but I like to accept thousand separators for my integers (unless I'm in tight control of the data passed). I'm not in a position to worry about other cultures. I use decimal.TryParse with NumberStyles.Currency for decimals/money parsing.

private bool isNumber(this string value)
{
   int oInt;
   if (!string.IsNullOrEmpty(value) && Int32.TryParse(value,
      System.Globalization.NumberStyles.Integer | NumberStyles.AllowThousands, CultureInfo.InvariantCulture, out oInt))            
    return true;
  return false;
}
share|improve this answer
This question is tagged as Java, TryParse() of C# isn't really helpful ;) – guilhermeGeek Oct 20 '11 at 17:05
Retag happened after the answer. – Boone Nov 16 '11 at 13:58
public static boolean CheckString(String myString) {

char[] digits;

    digits = myString.toCharArray();
    for (char div : digits) {// for each element div of type char in the digits collection (digits is a collection containing div elements).
        try {
            Double.parseDouble(myString);
            System.out.println("All are numbers");
            return true;
        } catch (NumberFormatException e) {

            if (Character.isDigit(div)) {
                System.out.println("Not all are chars");

                return false;
            }
        }
    }

    System.out.println("All are chars");
    return true;
}
share|improve this answer

That's my implementation to check whether a string is made of digits:

public static boolean isNumeric(String string)
{
    if (string == null)
    {
        throw new NullPointerException("The string must not be null!");
    }
    final int len = string.length();
    if (len == 0)
    {
        return false;
    }
    for (int i = 0; i < len; ++i)
    {
        if (!Character.isDigit(string.charAt(i)))
        {
            return false;
        }
    }
    return true;
}
share|improve this answer

For long numbers use this: (JAVA)

public static boolean isNumber(String string) {
    try {
        Long.parseLong(string);
    } catch (Exception e) {
        return false;
    }
    return true;
}
share|improve this answer
 public static boolean isNumber(String str){
      return str.matches("[0-9]*\\.[0-9]+");
    }

to check whether number (including float, integer) or not

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.