I'm trying to parse a string, breaking on a token (a la strtok() ). The string coming in (strSearchCaption) is string8. Idealy I would like to get a string8 off to dump into an array of string8s.
CODE
TCHAR* token = _tcstok(string_utf16_from_utf8(strSearchCaption), ";");
Why do I want to do this? strSearchCaption contains a semi-colon delimited string of window title "words", that the users doesn't want foo_tbar to activate on.