How to check whether a string is number
|
Light Poster
|
|
| 15Jan2008,13:29 | #1 |
|
if i have a string, how do i check whether the string is number?
|
|
Contributor
|
|
| 15Jan2008,15:18 | #2 |
|
look for atoi() function...
it will return zero if it is not able to convert the string passed into number.. though if you have an alphanumeric inputs (like 1234go4expert)..u should go for strtol().. both the functions even convert the input passed into their respective numbers(if possible). |
|
Ambitious contributor
|
|
| 15Jan2008,15:24 | #3 |
|
You should use strtol() all the time.
atoi() for example cannot detect numeric overflow. |
|
Contributor
|
|
| 15Jan2008,15:30 | #4 |
|
completely agree..
there is another kind of case ..when input is "1234forum" atoi() will return 1234..!! and in case of strtol() using the third argument we can check if the function traversed the whole input or not.. |
|
Light Poster
|
|
| 15Jan2008,16:23 | #5 |
|
Thank you so much. I will try it
|
