I'm fairly new to c++ and have encountered a problem where by searching alone I couldn't find a solution.
The problem is, why does the istringstream never changes its value inside the loop below?
It takes the value from dirs[ 0 ] and dirs[ 1 ] and never changes them to the increasing int i. Btw. the values in dirs[ i ] and dirs [ i + 1 ] are stored as hex values (e.g. 0F9C8924).
Below is my latest setup, i've tried several other ways but with no success, for example having istringstream inside the loop and with ios_base::trunc and whatsoever.
Also dirs[ i ] etc. DO have different values and are read correctly, but when trying to make the string hex into a unsigned int via istringstream it never takes the new values.
unsigned int f;
unsigned int t;
istringstream ss;
istringstream ss2;
for( int i = 0; i < count; i+=3 ) {
ss.clear();
ss2.clear();
ss.str( dirs[ i ] );
ss2.str( dirs[ i + 1 ] );
ss >> f;
ss2 >> t;
// do something else with dirs[ i + 3 ], not relevant
}
count and dirs are a global variable and count is increased in another function, its the count of values in dirs.
I am sorry if this has been asked before, but the solutions I found somehow didn't work for me.
Such as ss.clear() or while( ss >> f )
Thanks in advance for any help provided.
dirscontains, and what output do you expect? And what output this current program actually gives? – Nawaz May 15 '11 at 15:58dirsarray. As a result istringstream couldn't convert the string to to an int. Sorry for wasting your time. =( – zhade May 15 '11 at 16:52