Pregunta

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.

¿Fue útil?

Solución

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.

Otros consejos

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top