I have a string (char) and I want to extract numbers out of it.
So I have string: 1 2 3 4 /0
And now I want some variables, so I can use them as integer: a=1, a=2, a=3, a=4
How can I do that?
|
|
|||
|
|
|
If the string always contains 4 numbers delimited with spaces, then it could be done with sscanf:
If the count of numbers varies, then you would need to parse the string. Please clarify your question accordingly. |
||
|
|
|
The answers given so far are correct, as long as your string is formatted the way you expect. You should always check the return value of sscanf to make sure things worked okay. sscanf returns the number of conversions successfully performed, in the above case 4.
If buf was "1 2 3" or "1 2 a b" or something, sscanf would return a short item count. |
||
|
|
|
|
sscanf() can do that.
|
||
|
|
|
|
As others have noted, if you know how many numbers to expect, sscanf is the easiest solution. Otherwise, the following sketches a more general solution: First tokenize the string by spaces. The standard C method for this is strtok():
Then convert the string to integers. atoi() will do that. |
||||
|
|
|
sscanf solved my problem. Thank you all for the help. |
||
|
|