How to get the number of characters in a std::string?

前端 未结 12 965
既然无缘
既然无缘 2020-11-28 03:52

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

相关标签:
12条回答
  • 2020-11-28 04:30

    It might be the easiest way to input a string and find its length.

    // Finding length of a string in C++ 
    #include<iostream>
    #include<string>
    using namespace std;
    
    int count(string);
    
    int main()
    {
    string str;
    cout << "Enter a string: ";
    getline(cin,str);
    cout << "\nString: " << str << endl;
    cout << count(str) << endl;
    
    return 0;
    
    }
    
    int count(string s){
    if(s == "")
      return 0;
    if(s.length() == 1)
      return 1;
    else
        return (s.length());
    
    }
    
    0 讨论(0)
  • 2020-11-28 04:34

    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);
    
    0 讨论(0)
  • 2020-11-28 04:38

    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);
    
    0 讨论(0)
  • 2020-11-28 04:40

    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
    
    0 讨论(0)
  • 2020-11-28 04:41

    for an actual string object:

    yourstring.length();
    

    or

    yourstring.size();
    
    0 讨论(0)
  • 2020-11-28 04:44

    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.

    0 讨论(0)
提交回复
热议问题