Looping over a String - C++ STL

C++ examples for STL:string

Description

Looping over a String

Demo Code

#include <iostream> 
#include <string> 

using namespace std; 

int main(int argc, char *argv [])
{   /*from w  w w .  java 2  s . c om*/
        string myString{ "This is my string!" }; 
        for (string::iterator iter = myString.begin(); iter != myString.end(); ++iter) 
        { 
                cout << *iter << endl; 
        } 
        return 0; 
}

Result


Related Tutorials