C++怎么统计字符个数

2023-04-07 08:12:00 统计 字符 个数

C++如何统计字符个数

在C++中,有两种常见的方法可以用来统计字符个数。

第一种方法是使用C++中的string类。string类提供了一个成员函数size(),可以直接用来获取字符串中字符的个数。

示例代码:

#include #include using namespace std; int main() { string str = "Hello, world!"; cout << "字符个数:" << str.size() << endl; return 0; }

输出结果:

字符个数:13

另一种方法是使用C++中的STL(标准模板库)中的count()函数。count()函数是一个泛型函数,可以用来统计任意类型的元素个数。

示例代码:

#include #include #include using namespace std; int main() { string str = "Hello, world!"; cout << "字符个数:" << count(str.begin(), str.end(), 'o') << endl; return 0; }

输出结果:

字符个数:2

以上就是C++中字符个数统计的两种常见方法。

相关文章