命名空间
变体
操作

std::erase, std::erase_if(std::basic_string)

来自 cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
迭代器
容量
修改器
搜索
操作
常量
非成员函数
erase(std::basic_string)erase_if(std::basic_string)
(C++20)(C++20)
I/O
比较
(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(C++20)
数字转换
(C++11)(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
文字
辅助类
推导指南 (C++17)

 
定义在头文件 <string>
(1)
template< class CharT, class Traits, class Alloc, class U >

constexpr std::basic_string<CharT, Traits, Alloc>::size_type

    erase( std::basic_string<CharT, Traits, Alloc>& c, const U& value );
(自 C++20 起)
(直到 C++26)
template< class CharT, class Traits, class Alloc, class U = CharT >

constexpr std::basic_string<CharT, Traits, Alloc>::size_type

    erase( std::basic_string<CharT, Traits, Alloc>& c, const U& value );
(自 C++26 起)
template< class CharT, class Traits, class Alloc, class Pred >

constexpr std::basic_string<CharT, Traits, Alloc>::size_type

    erase_if( std::basic_string<CharT, Traits, Alloc>& c, Pred pred );
(2) (自 C++20 起)
1) 从容器中删除所有与 value 相等的元素。 等同于
auto it = std::remove(c.begin(), c.end(), value);
auto r = c.end() - it;
c.erase(it, c.end());
return r;
2) 从容器中删除所有满足谓词 pred 的元素。 等同于
auto it = std::remove_if(c.begin(), c.end(), pred);
auto r = c.end() - it;
c.erase(it, c.end());
return r;

内容

[编辑] 参数

c - 要从中删除的容器
value - 要删除的值
pred - 一元谓词,如果应删除该元素,则返回 ​true

表达式 pred(v) 必须可转换为 bool,用于类型为 (可能为 const) CharT 的每个参数 v,无论 值类别 如何,并且不得修改 v。 因此,不允许 CharT& 的参数类型 ,除非 CharT 的移动等效于复制(自 C++11 起)。 ​

[编辑] 返回值

已删除元素的数量。

[编辑] 复杂度

线性。

备注

功能测试 Std 功能
__cpp_lib_algorithm_default_value_type 202403 (C++26) 列表初始化 用于算法 (1)

[编辑] 示例

#include <iomanip>
#include <iostream>
#include <string>
 
int main()
{
    std::string word{"startling"};
    std::cout << "Initially, word = " << std::quoted(word) << '\n';
 
    std::erase(word, 'l');
    std::cout << "After erase 'l': " << std::quoted(word) << '\n';
 
    auto erased = std::erase_if(word, [](char x)
    {
        return x == 'a' or x == 'r' or x == 't';
    });
 
    std::cout << "After erase all 'a', 'r', and 't': " << std::quoted(word) << '\n';
    std::cout << "Erased symbols count: " << erased << '\n';
 
#if __cpp_lib_algorithm_default_value_type
    std::erase(word, {'g'});
    std::cout << "After erase {'g'}: " << std::quoted(word) << '\n';
#endif
}

可能的输出

Initially, word = "startling"
After erase 'l', word = "starting"
After erase all 'a', 'r', and 't': "sing"
Erased symbols count: 4
After erase {'g'}: "sin"

[编辑] 参见

删除满足特定条件的元素
(函数模板) [编辑]
删除满足特定条件的元素
(niebloid)[编辑]