Please, how can I find out the length of a variable of type wchar_t* in c++?
code example below:
wchar_t* dimObjPrefix = L"retro_";
I would like to find out how many characters dimObjPrefix contains
Edit: I just noticed the
|
|||||||||||||||
|
|
Assuming that you want to get the length of null terminated C style string, you have two options:
|
|||
|
|
wchar_tis not a string, and it doesn't have a length. I assume you're asking aboutwchar_t*. Those asterisks aren't just for show, you know. They can't be left out without changing the meaning of the code (and the question) – jalf May 18 '10 at 2:29wchar_t*points to. – Lightness Races in Orbit Mar 31 '11 at 14:14