I want to split this:
char* value = "12;32;blue";
or
string value = "12;32;blue";
into this vars:
TV = 12;
AR = 32;
LED = "blue";
is it possible?
I want to split this:
into this vars:
is it possible? |
||||
|
For C-strings (
Note 1: the code above takes it for granted that Note 2: Note 3: |
|||
|
Scan function should do the job.
|
|||||||||||||||||||||
|