boost :: erase_all从字符串中删除多个字符

时间:2012-05-09 20:10:08

标签: c++ string boost

如果我想使用boost::erase_all删除字符串中的所有字符,我可以这样做:

boost::erase_all( "a1b1c1", "1" );

现在,我的字符串是“abc”。但是,如果我想使用boost::erase_all从字符串中删除所有数字(0 - 9),我必须为我想删除的每个数字调用一次。

boost::erase_all( "a1b2c3", "1" );
boost::erase_all( "a1b2c3", "2" );
boost::erase_all( "a1b2c3", "3" );

我以为我可以使用boost::is_any_of一次删除它们,因为它适用于其他提升字符串算法,例如boost::split,但is_any_of似乎不适用于erase_all:

boost::erase_all( "a1b2c3", boost::is_any_of( "123" ) );

// compile error
boost/algorithm/string/erase.hpp:593:13: error: no matching 
function for call to ‘first_finder(const   
boost::algorithm::detail::is_any_ofF<char>&)’

也许我已经在这里看了一些显而易见的东西,或者还有其他功能,这意味着要做到这一点。我可以使用标准C ++手动完成,但只是好奇其他人如何使用boost来做到这一点。

感谢您的任何建议。

2 个答案:

答案 0 :(得分:7)

boost有一个remove_if版本,它不需要你传入开始和结束迭代器,但你仍然需要使用结束迭代器调用字符串上的erase。

#include <boost/range/algorithm/remove_if.hpp>
...
std::string str = "a1b2c3";
str.erase(boost::remove_if(str, ::isdigit), str.end());

http://www.boost.org/doc/libs/1_49_0/libs/range/doc/html/range/reference/algorithms/mutating/remove_if.html

答案 1 :(得分:6)

现在也可以:

boost::remove_erase_if(str, boost::is_any_of("123"));