I have a string 13/06/07
but i have to convert it into integer and 13 , 06 and 07 has to be separated in c++.
|
Go4Expert Member
|
![]() |
| 3Jan2008,20:54 | #1 |
|
I have a string 13/06/07
but i have to convert it into integer and 13 , 06 and 07 has to be separated in c++. |
|
Newbie Member
|
|
| 8Jan2008,15:25 | #2 |
|
you can use "sscanf" , "man sscanf " for an example .
Here i give you a simple Example: char* strTemp = "123,456,789"; int iFisrt = 0; int iSecond = 0; int iThird =0; scannf(strTemp, "%d,%d,%d",&iFirst, &iSecond, &iThird); |