Erase characters from this string.

Synopsis

Declared in <bslstl_string.h>

iterator
erase(const_iterator position);

Description

Erase a character at the specified position from this string, and return an iterator providing modifiable access to the character at position prior to erasing. If no such character exists, return end(). The behavior is undefined unless position is within the half‐open range [cbegin() .. cend())].

Return Value

iterator following the last removed character

Parameters

Name

Description

position

starting index

Created with MrDocs