split c++ string - C++ Forum
Since your delimiter here is spaces, all you have to do is replace the comma with a space, then use a std::istringstream to extract each token into a new string. ... 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #include #include #include using ......