是否有任何STL算法或标准方法来查找字符串中特定子字符串的出现次数?例如,在字符串中:
'How do you do at ou'
字符串“ou”出现两次。我尝试了一些带有和不带谓词的STL算法,但我发现STL的那些算法想要比较字符串的组件,在我的情况下是char但不能?比较子串。 我提出这样的事情:
str - string
obj - 我们正在寻找的子串
std::string::size_type count_subs(const std::string& str, const std::string& obj)
{
std::string::const_iterator beg = str.begin();
std::string::const_iterator end = str.end();
std::string::size_type count = 0;
while ((beg + (obj.size() - 1)) != end)
{
std::string tmp(beg, beg + obj.size());
if (tmp == obj)
{
++count;
}
++beg;
}
return count;
}
谢谢。
答案 0 :(得分:5)
#include <string>
#include <iostream>
int Count( const std::string & str,
const std::string & obj ) {
int n = 0;
std::string ::size_type pos = 0;
while( (pos = obj.find( str, pos ))
!= std::string::npos ) {
n++;
pos += str.size();
}
return n;
}
int main() {
std::string s = "How do you do at ou";
int n = Count( "ou", s );
std::cout << n << std::endl;
}