Ok, i'm doing this and it works fine.
end = std::find(arToken.begin() + nStart, arToken.end(), ".");
I want to extend the . to include ! and ? so it finds periods(.), exclamation mark(!), and question mark(?).
Should i use regex in the term?
TIA