guys, let's say I a sentence
string sentence = "Hello, I like C++ programming language!";
and I want to put each word into an array of strings... I think I could use a delimiter
size_t space = sentence.find(" ");
string words[]; //putting individual words here
for(int i=0; i < sentence.length(); i++)
{
words[i] =
//incrementing delimiter to next space here
}
any help appreciated. Thanks