我有这个java代码
String s3="10100111001";
String s4="1001";
String s5="0";
System.out.println(s3);
int last_index=3; //To replace only the last
while(last_index>=0) {
last_index=s3.indexOf(s4,last_index);
System.out.println("B:" +last_index);
if(last_index>=0)
{
s3=s3.replace(s3.substring(last_index,(last_index+s4.length())),s5);
last_index=last_index+s4.length();
System.out.println("L:"+last_index);
continue;
}
else
{
continue;
}
}
System.out.println(s3);
理想情况下,此代码应仅替换最后一次出现的,1001
但同时替换出现的1001
我的输出是10010
,但应该是10100110
。我哪里错了?