📌  相关文章
📜  c++ 查找字符串中所有出现的索引 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:45.112000             🧑  作者: Mango

代码示例1
// C++ program to find indices of all
// occurrences of one string in other.
#include 
using namespace std;
void printIndex(string str, string s)
{
 
    bool flag = false;
    for (int i = 0; i < str.length(); i++) {
        if (str.substr(i, s.length()) == s) {
            cout << i << " ";
            flag = true;
        }
    }
 
    if (flag == false)
        cout << "NONE";
}
int main()
{
    string str1 = "GeeksforGeeks";
    string str2 = "Geeks";
    printIndex(str1, str2);
    return 0;
}