Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

check if WCHAR contains string

Tags:

c++

wchar

I have variable WCHAR sDisplayName[1024];

How can I check if sDisplayName contains the string "example"?

like image 207
Irakli Lekishvili Avatar asked Jun 28 '12 20:06

Irakli Lekishvili


2 Answers

if(wcscmp(sDisplayName, L"example") == 0)
    ; //then it contains "example"
else
    ; //it does not

This does not cover the case where the string in sDisplayName starts with "example" or has "example" in the middle. For those cases, you can use wcsncmp and wcsstr.

Also this check is case sensitive.

Also this will break if sDisplayName contains garbage - i. e. is not null terminated.

Consider using std::wstring instead. That's the C++ way.

EDIT: if you want to match the beginning of the string:

if(wcsncmp(sDisplayName, L"Adobe", 5) == 0)
    //Starts with "Adobe"

If you want to find the string in the middle

if(wcsstr(sDisplayName, L"Adobe") != 0)
    //Contains "Adobe"

Note that wcsstr returns nonzero if the string is found, unlike the rest.

like image 81
Seva Alekseyev Avatar answered Sep 30 '22 19:09

Seva Alekseyev


You can use the wchar_t variants of standard C functions (i.e., wcsstr).

like image 33
Ed S. Avatar answered Sep 30 '22 20:09

Ed S.