Jacob
Jacob

Reputation: 1262

get length of `wchar_t*` in c++

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

Upvotes: 45

Views: 97496

Answers (2)

Bertrand Marron
Bertrand Marron

Reputation: 22210

If you want to know the size of a wchar_t string (wchar_t *), you want to use wcslen(3):

size_t wcslen (const wchar_t *ws);

Upvotes: 53

wilx
wilx

Reputation: 18238

Assuming that you want to get the length of null terminated C style string, you have two options:

  1. #include <cwchar> and use std::wcslen (dimObjPrefix);,
  2. or #include <string> and use std::char_traits<wchar_t>::length (dimObjPrefix);.

Upvotes: 13

Related Questions