码迷,mamicode.com
首页 > 编程语言 > 详细

【c++】删除string中指定的字符

时间:2019-03-31 23:17:38      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:html   color   iter   开始   std   out   const   include   href   

 

使用string::iterator(字符串迭代器)从开始 str.begin() 迭代到最后 str.end() ,再使用string.erase(const_iterator p)函数来删除迭代器所指向的字符。

 

#include <iostream>
#include <string>

using namespace std;

int main()
{
    string str;
    char ch;
    cin >> str;
    cin >> ch;
    string::iterator it;
    for (it = str.begin(); it < str.end(); it++)
    {
        if (*it == ch)
        {
            str.erase(it);
            it--;
            /*
            it--很重要,因为使用erase()删除it指向的字符后,后面的字符就移了过来,
            it指向的位置就被后一个字符填充了,而for语句最后的it++,又使it向后移
            了一个位置,所以就忽略掉了填充过来的这个字符。在这加上it--后就和for
            语句的it++抵消了,使迭代器能够访问所有的字符。
            */
        }
    }
    cout << str;
    return 0;
}

 

【c++】删除string中指定的字符

标签:html   color   iter   开始   std   out   const   include   href   

原文地址:https://www.cnblogs.com/huwt/p/10633896.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!