Crossware

Table of Contents        Previous topic       Next topic       

C++ COMPILER LIBRARY FUNCTIONS->String Class Functions->Member Functions->Iterator Access

#include <string>

iterator begin()

Returns an iterator referring to the first character in the string.

const_iterator begin() const

Returns a const  iterator referring to the first character in the string.

iterator end()

Returns an iterator which is the past-the-end value.

const_iterator  end() const

Returns a const iterator which is the past-the-end value.


Not that rbegin() and rend() have been omitted from the Embedded C++ specification.