How to check whether a string is number

Light Poster
15Jan2008,13:29   #1
qiqinuinaifen128's Avatar
if i have a string, how do i check whether the string is number?
Contributor
15Jan2008,15:18   #2
technosavvy's Avatar
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
Salem's Avatar
You should use strtol() all the time.
atoi() for example cannot detect numeric overflow.
Contributor
15Jan2008,15:30   #4
technosavvy's Avatar
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
qiqinuinaifen128's Avatar
Thank you so much. I will try it