Hi I have a string like this:
word1--tab--word2--tab--word3--tab--word4--tab--word5--tab--word6
I need to extract the third word fr
assuming "tab" is \t;
\t
std::istringstream str("....."); std::string temp, word; str >> temp >> temp >> word;