c – 字符串第n次出现的索引

前端之家收集整理的这篇文章主要介绍了c – 字符串第n次出现的索引前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在一行中找到给定字符串第n次出现的索引?我需要这个从该索引中获取子字符串.这可能通过c中的任何功能吗?

解决方法

Boost: http://www.boost.org/doc/libs/1_54_0/doc/html/boost/algorithm/find_nth.html中有一个find_nth模板函数
#include <iostream>
#include <boost/algorithm/string/find.hpp>

using namespace std;
using namespace boost;

int main() {

    string a = "The rain in Spain falls mainly on the plain";

    iterator_range<string::iterator> r = find_nth(a,"ain",2);
    cout << distance(a.begin(),r.begin()) << endl;

    return 0;
}
原文链接:https://www.f2er.com/c/117224.html

猜你在找的C&C++相关文章