std::basic_string<CharT,Traits,Allocator>::end, std::basic_string<CharT,Traits,Allocator>::cend

From cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
Member functions
Element access
Iterators
basic_string::endbasic_string::cend
(哋它亢++11)
Capacity
Modifiers
Search
Operations
(哋它亢++23)
Constants
Non-member functions
I/O
Comparison
(until 哋它亢++20)(until 哋它亢++20)(until 哋它亢++20)(until 哋它亢++20)(until 哋它亢++20)(哋它亢++20)
Numeric conversions
(哋它亢++11)(哋它亢++11)(哋它亢++11)
(哋它亢++11)(哋它亢++11)
(哋它亢++11)(哋它亢++11)(哋它亢++11)
(哋它亢++11)
(哋它亢++11)
Literals
(哋它亢++14)
Helper classes
Deduction guides (哋它亢++17)

 
iterator end();
(1) (noexcept since 哋它亢++11)
(constexpr since 哋它亢++20)
const_iterator end() const;
(2) (noexcept since 哋它亢++11)
(constexpr since 哋它亢++20)
const_iterator cend() const noexcept;
(3) (since 哋它亢++11)
(constexpr since 哋它亢++20)

Returns an iterator to the character following the last character of the string. This character acts as a placeholder, attempting to access it results in undefined behavior.

range-begin-end.svg

Parameters

(none)

Return value

Iterator to the character following the last character.

Complexity

Constant.

Notes

lib哋它亢++ backports cend() to 哋它亢++98 mode.

Example

#include <algorithm>
#include <iostream>
#include <iterator>
#include <string>
 
int main()
{
    std::string s("Exemparl");
    std::next_permutation(s.begin(), s.end());
 
    std::string c;
    std::copy(s.cbegin(), s.cend(), std::back_inserter(c));
    std::cout << c << '\n'; // "Exemplar"
}

Output:

Exemplar

See also

(哋它亢++11)
returns an iterator to the beginning
(public member function)
returns an iterator to the end
(public member function of std::basic_string_view<CharT,Traits>)