I have a char array in the form of mm/dd/yy (as the user was asked to enter a date).
How do I split the array, and remove the /'s, and put mm, dd and yy into 3 different integers?
|
I would use sscanf to parse the string:
This will parse the date into the three integer values. In addition, to verify that the input data was formatted properly, you should also check that sscanf returned 3, indicating that all three values were properly parsed. See the following working example, which includes some basic error checking. |
||||
|
Look into You could also use |
|||
|
strtok() is a function that takes on first call a string and a delimiter to split on. After the first call, it will continue to tokenize the same string if you pass NULL as the first argument. If your input is really rigid, sscanf is good. |
|||
|
|
First, locate the nearest
Then apply a "substring":
Repeat this process:
Then simply go from the last
|
|||||
|
strtol(3)is probably the best function to start with. – sarnold May 19 '11 at 1:40