public member function
<string>
std::string::enditerator end();const_iterator end() const;
iterator end() noexcept;const_iterator end() const noexcept;
Return iterator to end
Returns an iterator pointing to the past-the-end character of the string.The past-the-end character is a theoretical character that would follow the last character in the string. It shall not be dereferenced.
Because the ranges used by functions of the standard library do not include the element pointed by their closing iterator, this function is often used in combination with string::begin to specify a range including all the characters in the string.
If the object is an empty string, this function returns the same as string::begin.
If the string object is const-qualified, the function returns a const_iterator. Otherwise, it returns an iterator.
Member types iterator and const_iterator are random access iterator types (pointing to a character and to a const character, respectively).
1
2
3
4
5
6
7
8
9
10
11
12
13
// string::begin/end
#include <iostream>
#include <string>
int main ()
{
std::string str ("Test string");
for ( std::string::iterator it=str.begin(); it!=str.end(); ++it)
std::cout << *it;
std::cout << '\n';
return 0;
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4