std::basic_string::erase
来自cppreference.com
< cpp | string | basic string
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
basic_string& erase( size_type index = 0, size_type count = npos ); |
(1) | |
iterator erase( iterator position ); iterator erase( const_iterator position ); |
(2) | (至 C++11) (C++11 起) |
iterator erase( iterator first, iterator last ); iterator erase( const_iterator first, const_iterator last ); |
(3) | (至 C++11) (C++11 起) |
删除指定的字符串中的字符..
原文:
Removes specified characters from the string.
1)
删除
count
字符开始在index
.原文:
Removes
count
characters starting at index
.2)
删除的字符
position
.3)
删除字符的范围内
[first; last)
原文:
Removes the character in the range
[first; last)
.目录 |
[编辑] 参数
index | - | 第一个字符删除
|
count | - | 要移除的字符数
|
position | - | 迭代器的字符删除
|
first, last | - | 范围内的字符,以除去
|
[编辑] 返回值
1) *this
2-3)
迭代器删除的最后一个字符.
原文:
iterator following the last removed character.
[编辑] 例外
1) std::out_of_range if index > size().
2-3)
(无)
[编辑] 另请参阅
清除其内容 (公共成员函数) |