質問

Im trying to check if a wchar_t * equals case-insensitive to another wchar_t *. Can someone put me in the right way?

There is what I tryed:

wchar_t *vectored[80] = { ... };
int i = 0;
int j = 1;
_Towlower(vectored[i], NULL) == _Towlower(vectored[j], NULL);

_Tolower() no overload for wchar_t pointer.

Thanks you.

役に立ちましたか?

解決

Are you sure you're not using _towlower (lowercase t)? If so, _towlower converts a single character, not a complete string. To compare a complete string, use _wcsicmp.

他のヒント

You could use the wcscasecmp function if it's available in your implementation.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top