Possible Duplicate:
How to split a string in C++?
I need split my string as
1. StackOverflow
2. Sky
3. CLOUD
4. Sun
11. Moon
12.Star
into
StackOverflow
sky
cloud
sun
moon
star.
How to do in C++, in vb , it shoud be like this
string test= 1. StackOverflow
string spliteed = test.split(.)
no idea in c++ is how. Thx for advice