I recently fell in love with the String Tokenizer in Java while working on an assignment for my Java course. I was just wondering if there are any equivalents of the String Tokenizer in C++? If so, where can I find the documentation?
There is no inbuilt tokenizing functionality (that I am aware of), but it's not hard to implement it yourself - what functionality do you need (I am not very fluent with java, but the actual tokenizing of strings can be done with a few lines of code)?