c++sting类在字符串中找相同的字符并且把他删除
#include#include int main() { string str=; //十个字符串 string::iterator it; //stirng 迭代 int index=str.find("\\"); int x=0; while(inedx!=-1) { if((index-1)==0) //前面的减去后面的是1那么就是相同 { it=str.begin(); cout<<"找到相同的了" str.erase(it+index); } x=index; index=str.find("\\",index+1); } return 0; }
当前标题:c++sting类在字符串中找相同的字符并且把他删除
本文链接:http://scyanting.com/article/ijgphp.html