“chaîne CPP Trouver toutes les accessions” Réponses codées

Trouvez toutes les occurrences d'une sous-chaîne dans une chaîne C

#include <string>
#include <iostream>

using namespace std;

int main()
{
    string s("hello hello");
    int count = 0;
    size_t nPos = s.find("hello", 0); // first occurrence
    while(nPos != string::npos)
    {
        count++;
        nPos = s.find("hello", nPos + 1);
    }

    cout << count;
};
the_pythor

chaîne CPP Trouver toutes les accessions

string str,sub; // str is string to search, sub is the substring to search for

vector<size_t> positions; // holds all the positions that sub occurs within str

size_t pos = str.find(sub, 0);
while(pos != string::npos)
{
    positions.push_back(pos);
    pos = str.find(sub,pos+1);
}
Modern Millipede

Réponses similaires à “chaîne CPP Trouver toutes les accessions”

Questions similaires à “chaîne CPP Trouver toutes les accessions”

Plus de réponses similaires à “chaîne CPP Trouver toutes les accessions” dans C++

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code