Question

I'm trying to split a WideChar String in to an array, Here is the way I'm doing this :<>

WCHAR* Message = _T("This is a sample text"):
wchar_t *pwc;
CStringArray Command;
pwc = wcstok(Message, L" ");
int Count = 0;
while (pwc != NULL) {
    pwc = wcstok(NULL, L" ");
    Command.Add(pwc);
    Count++;
}

for (int i = 0 ; i <= Count ; i++)
{
    AfxMessageBox(Command[i]);
}

The problem is I do not have "This" in my final result array
Whats wrong ?

Was it helpful?

Solution

You need to move the call to Command.Add before the assignment to pwc in the loop - as it stands you're moving on to the second token before doing your first Add.

OTHER TIPS

I am having no issues with your source. All string components are printing perfectly.

Here's my full working code:

#include "stdafx.h"
#include <wchar.h>

int main(int argc, char *argv[])
{
    wchar_t wcs[] = L"This is a sample string";
    wchar_t *pwc;
    pwc = wcstok(wcs, L" ");
    while (pwc != NULL) {
        wprintf(L"%ls\n", pwc);
        pwc = wcstok(NULL, L" ");
    }
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top