标签:style class c code ext color
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; } |
删除string里面的指定字符,布布扣,bubuko.com
标签:style class c code ext color
原文地址:http://blog.csdn.net/u013340181/article/details/26579585