1. I have a data like this.
16;,1,2;;3,4,;5,6;,,
The result what I want is
16 1 2 3 4 5 6( remove all ;,: and each word is seperated exactly one
empty space)
How can I do it?
2. I have a LONG data like this
1,2,3,4, ... , 10000
The function what I want is >> which works like this. It should be much
faster ReadLine() as a string and Split() it.
int a;
longData >> a; // a is 1
longData >> a; // a is 2
longData >> a; // a is 3
I searched it. But I couldn't find any result.
I beg your advice.