G
Guest
Well, I have an char* and I need to separe it in pieces... for example I
have this:
"AREA_VERTEX -5.1108 -33.2878 0" and I need to separe this string in an
array of char* with this values...
[0] = "AREA_VERTEX"
[1] = "-5.1108"
[2] = "-33.287"
[3] = "0"
This values are separate by and blank space, please I need any good Idea,
I'm new working with strings in c++
Thnx in advance
have this:
"AREA_VERTEX -5.1108 -33.2878 0" and I need to separe this string in an
array of char* with this values...
[0] = "AREA_VERTEX"
[1] = "-5.1108"
[2] = "-33.287"
[3] = "0"
This values are separate by and blank space, please I need any good Idea,
I'm new working with strings in c++
Thnx in advance