gpt4 book ai didi

c++ - 在 C++ 中计算字符串中的字符出现次数

转载 作者:IT老高 更新时间:2023-10-28 11:28:48 26 4
gpt4 key购买 nike

我如何计算 "bla_bla_blabla_bla" 这样的字符串中的 "_" 的数量?

最佳答案

#include <algorithm>

std::string s = "a_b_c";
std::string::difference_type n = std::count(s.begin(), s.end(), '_');

关于c++ - 在 C++ 中计算字符串中的字符出现次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3867890/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com