Voglio sapere le posizioni del "_" in una stringa:Come posso rilevare "_" in una stringa C++?
string str("BLA_BLABLA_BLA.txt");
Qualcosa di simile:
string::iterator it;
for (it=str.begin() ; it < str.end(); it++){
if (*it == "_") //this goes wrong: pointer and integer comparison
{
pos(1) = it;
}
cout << *it << endl;
}
Grazie, André
Provare a utilizzare le virgolette singole anziché le virgolette doppie. –
@Dominic perché non è questa una risposta? – Motti
@Motti - è ora (vedere la risposta di sbi http://stackoverflow.com/questions/3725574/detect-in-a-string/3725671#3725671) –