vote up 2 vote down star

How should I get the number of characters in a string in C++?

flag

75% accept rate
What sort of strings are you dealing with? std::string? cstring? null terminated string? – Steve Rowe May 25 at 6:16

8 Answers

vote up 25 vote down check

If you're using a std::string, call length():

std::string str = "hello";
cout << str << ":" str.length();
// Outputs "hello:5"

If you're using a c-string, call strlen().

const char *str = "hello";
cout << str << ":" << strlen(str);
// Outputs "hello:5"

Or, if you happen to like using Pascal-style strings (or f***ed strings as Joel Spolsky likes to call them when they have a trailing NULL), just dereference the first character.

const char *str = "\005hello";
cout << str + 1 << ":" << *str;
// Outputs "hello:5"
link|flag
vote up 5 vote down

When dealing with C++ strings (std::string), you're looking for length() or size(). Both should provide you with the same value. However when dealing with C-Style strings, you would use strlen().

#include <iostream>
#include <string.h>

int main(int argc, char **argv)
{
   std::string str = "Hello!";
   const char *otherstr = "Hello!"; // C-Style string
   std::cout << str.size() << std::endl;
   std::cout << str.length() << std::endl;
   std::cout << strlen(otherstr) << std::endl; // C way for string length
   std::cout << strlen(str.c_str()) << std::endl; // convert C++ string to C-string then call strlen
   return 0;
}

Output:

6
6
6
6
link|flag
1  
Note that you can avoid compiler warnings (in certain C++ compilers) by using #include <cstring> instead of the deprecated #include <string.h> – Colin May 25 at 6:22
vote up 3 vote down

It depends on what string type you're talking about. There are many types of strings:

  1. const char* - a C-style multibyte string
  2. const wchar_t* - a C-style wide string
  3. std::string - a "standard" multibyte string
  4. std::wstring - a "standard" wide string

For 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.

link|flag
vote up 1 vote down
string foo;
... foo.length() ...

.length and .size are synonymous, I just think that "length" is a slightly clearer word.

link|flag
size() is universal across containers, though. – rlbond May 25 at 5:23
size() is discouraged because I remember hearing that in some implementations it will return the "length() + 1" (because it includes the null terminator). So just use length() as it is cleaner and more portable. – Nelson LaQuet May 25 at 5:28
1  
@LaQuet, If you're not using a standards-compliant compiler or STL implementation you have more things to worry about. – strager May 25 at 5:40
2  
@Nelson that shouldn't be the case as by standard C++ Strings aren't null-terminated. However when casting with c_str() it will add the null byte to the end. – John T May 25 at 5:42
vote up 1 vote down
std::string str("a string");
std::cout << str.size() << std::endl;
link|flag
vote up 1 vote down

for an actual string object:

yourstring.length();

or

yourstring.size();
link|flag
vote up 1 vote down

If you're using old, C-style string instead of the newer, STL-style strings, there's the strlen function in the C run time library:

const char* p = "Hello";
size_t n = strlen(p);
link|flag
vote up 0 vote down

if you're using std::string, there are two common methods for that:

std::string Str("Some String");
size_t Size = 0;
Size = Str.size();
Size = Str.length();

if you're using the C style string (using char * or const char *) then you can use:

const char *pStr = "Some String";
size_t Size = strlen(pStr);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.