删除string里面的指定字符

来源:互联网 发布:ips和led知乎 编辑:程序博客网 时间:2024/05/18 20:08
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <iostream>
#include <string>
 
using namespace std;
 
int main()
{
    string    str("abcdefg");
    string::iterator   it;
 
    for (it =str.begin(); it != str.end(); ++it)
    {
        if ( *it == 'c')
        {
            str.erase(it);
        }
    }
 
    cout << str << endl;
}
0 0
原创粉丝点击