摘要: C++中要从string中删除所有某个特定字符, 可用如下代码 str.erase(std::remove(str.begin(), str.end(), 'a'), str.end()); 其中, remove来自<algorithm>, 它的签名是 template <class Forward 阅读全文
posted @ 2018-01-27 10:35 郭导技术小站 阅读(13002) 评论(0) 推荐(0) 编辑