How should I get the number of characters in a string in C++?
|
|
|||
|
|
|
If you're using a std::string, call length():
If you're using a c-string, call strlen().
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.
|
|||
|
|
|
|
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().
Output:
|
||||
|
|
|
It depends on what string type you're talking about. There are many types of strings:
For 3 and 4, you can use For 1, you can use For 2, you can use There are other string types in non-standard C++ libraries, such as MFC's 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 |
|||
|
|
|
|
.length and .size are synonymous, I just think that "length" is a slightly clearer word. |
||||||||||||
|
|
|
|
||
|
|
|
|
for an actual string object:
or
|
||
|
|
|
|
If you're using old, C-style string instead of the newer, STL-style strings, there's the
|
||
|
|
|
|
if you're using std::string, there are two common methods for that:
if you're using the C style string (using char * or const char *) then you can use:
|
|||
|
|
