How do I iterate over the words of a string?
For what it’s worth, here’s another way to extract tokens from an input string, relying only on standard library facilities. It’s an example of the power and elegance behind the design of the STL. Instead of copying the extracted tokens to an output stream, one could insert them into a container, using the same generic copy algorithm. … Read more