文字列がある場合例:
String s = "This is a string";
そして今、私はこのアクションを実行します:
s = s.replaceAll("This","What");
s="文字列とは"で動作します
結構ですが、式が一致しなかった場合:
s = s.replaceAll("junk","What");
sは以前の状態のままです。s = "This is a string";
これらの文字列を同一視せずに、s.replaceAllが実際に何らかのアクションを実行したかどうかを知る方法はありますか?