[#bsl-basic_string-0faf-erase-0d] = xref:bsl.adoc[bsl]::xref:bsl/basic_string-0faf.adoc[basic_string]::erase :relfileprefix: ../../ :mrdocs: Erase characters from this string. == Synopsis Declared in `<bslstl_string.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/basic_string-0faf/iterator.adoc[iterator] erase(xref:bsl/basic_string-0faf/const_iterator.adoc[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 [cols="1,4"] |=== | Name| Description | *position* | starting index |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#