How would you check if a string was a number before parsing it?
|
|
This is generally done with a simple user-defined function (i.e. Roll-your-own "isNumeric" function). Something like:
However, if you're calling this function a lot, and you expect many of the checks to fail due to not being a number then performance of this mechanism will not be great, since you're relying upon exceptions being thrown for each failure, which is a fairly expensive operation. An alternative approach may be to use a regular expression to check for validity of being a number:
Be careful with the above RegEx mechanism, though, as it'll fail if your using non-latin (i.e. 0 to 9) digits. For example, arabic digits. This is because the "\d" part of the RegEx will only match [0-9] and effectively isn't internationally numerically aware. (Thanks to OregonGhost for pointing this out!) Or even another alternative is to use Java's built-in java.text.NumberFormat object to see if, after parsing the string the parser position is at the end of the string. If it is, we can assume the entire string is numeric:
|
|||||||||||||||||||||
|
|
As @CraigTP had mentioned in his excellent answer, I also have similar performance concerns on using Exceptions to test whether the string is numerical or not. So I end up splitting the string and use
According to the Javadoc, UPDATE: As pointed by Jean-François Corbett in the comment, the above code would only validate positive integers, which covers the majority of my use case. Below is the updated code that correctly validates decimal numbers according to the default locale used in your system, with the assumption that decimal separator only occur once in the string.
|
|||||||||
|
|
You can also use |
|||||||||||
|
|
Google's Guava library provides a nice helper method to do this: Example:
However, as of the current release -- Guava r11 -- it is still marked @Beta. I haven't benchmarked it. Looking at the source code there is some overhead from a lot of sanity checking but in the end they use |
|||
|
|
CraigTP's regular expression (shown above) produces some false positives. E.g. "23y4" will be counted as a number because '.' matches any character not the decimal point. Also it will reject any number with a leading '+' An alternative which avoids these two minor problems is
|
|||||||
|
|
Here was my answer to the problem. A catch all convenience method which you can use to parse any String with any type of parser: isParsable(Object parser, String str). The parser can be a Class or an object. This will also allows you to use custom parsers you've written and should work for ever scenario, eg: Here's my code complete with method descriptions.
|
|||||
|
|
Parse it (i.e. with http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Integer.html#parseInt(java.lang.String) ) and simply catch the exception =) To clarify: The parseInt function checks if it can parse the number in any case (obviously) and if you want to parse it anyway, you are not going to take any performance hit by actually doing the parsing. If you would not want to parse it (or parse it very, very rarely) you might wish to do it differently of course. |
|||
|
|
|
You can use:
|
||||
|
|
I think the only way to reliably tell if a string is a number, is to parse it. So I would just parse it, and if it's a number, you get the number in an int for free! |
|||
|
|
|
That's why I like the Try* approach in .NET. In addition to the traditional Parse method that's like the Java one, you also have a TryParse method. I'm not good in Java syntax (out parameters?), so please treat the following as some kind of pseudo-code. It should make the concept clear though.
Usage:
|
|||||
|
You could use BigDecimal if the string may contain decimals |
|||||
|
|
|||
|
|
|
Here are two methods that might work. (Without using Exceptions). Note : Java is a pass-by-value by default and a String's value is the address of the String's object data. So , when you are doing
You have changed the input value to have no spaces. You can remove that line if you want.
Here is another method in case you want to allow floats This method allegedly allows numbers in the form to pass 1,123,123,123,123,123.123 i have just made it , and i think it needs further testing to ensure it is working.
|
|||||
|