您好,我有一个字符串,当我尝试在 for 循环中使用 replace 方法时它不起作用
String phrase="hello friend";
String[] wordds=phrase.split(" ");
String newPhrase="sup friendhello weirdo";
for (int g=0;g<2;g++)
{
finalPhrase+=newPhrase.replace(wordds[g],"");
}
System.out.println(finalPhrase);
它打印出来sup hello weirdo
,我希望它打印出来sup weirdo
。
我究竟做错了什么?