Possible Duplicate:
Split a string into words by multiple delimiters in C++
I'm currently trying to read a file where each line has a variation of tabs and spaces separating key attributes that need to be inserted into a binary tree.
My question is: How do I split a line up using multiple delimiters using only the STL? I've been trying to wrap my head around this for the good part of the day to no avail.
Any advice would be very much appreciated.