1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include<iostream>
#include<string>
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;
}
|
本文转自超级极客51CTO博客,原文链接:http://blog.51cto.com/12158490/1876797
,如需转载请自行联系原作者