Double.TryParse returns a value, and I don't need a value. I need to be able to tell if a string is numeric and just return a bool.
is there a way to do this?
|
|
|||||||||
|
|
|
I would consider exactly what you need to determine. "Is numeric" is vaguer than it sounds at first. Consider the following strings, and whether you'd want to consider them numeric:
Using If you want to tell whether a later call to
That would disallow all but the fourth and last examples above. EDIT: I've now noticed the title of the question includes "integer". That pretty much reduces the specification checks to:
|
|||
|
|
|
|
Well, you could use a regular expression, but why not just discard the value from Double.TryParse and move on? I don't think it will be worth the effort trying to duplicate this code. |
||||||||
|
|
|
One way is to add a reference to
|
||||||||
|
|
|
How about a regular expression?
should test whether it is a decimal value. What it won't tell you is whether it is a valid decimal, as in, will the number fit in the range of a decimal. |
||||
|
|
|
I just fired up Visual Studio Express (both 2005 and 2008). The Intellisense says that the return value of Double.TryParse() is a bool. The following worked for me under limited testing...
|
||
|
|
|
|
Hi, try this isnumeric:
{
} |
||
|
|