It depends on what string type you're talking about. There are many types of strings:
const char*
- a C-style multibyte stringconst wchar_t*
- a C-style wide stringstd::string
- a "standard" multibyte stringstd::wstring
- a "standard" wide stringFor 3 and 4, you can use .size()
or .length()
methods.
For 1, you can use strlen()
, but you must ensure that the string variable is not NULL (=== 0)
For 2, you can use wcslen()
, but you must ensure that the string variable is not NULL (=== 0)
There are other string types in non-standard C++ libraries, such as MFC's CString
, ATL's CComBSTR
, ACE's ACE_CString
, and so on, with methods such as .GetLength()
, and so on. I can't remember the specifics of them all right off the top of my head.
The STLSoft libraries have abstracted this all out with what they call string access shims, which can be used to get the string length (and other aspects) from any type. So for all of the above (including the non-standard library ones) using the same function stlsoft::c_str_len()
. This article describes how it all works, as it's not all entirely obvious or easy.