25
片方がもう片方を置き換えないように2つの文字列を置き換えるにはどうすればよいですか?
次のコードがあるとします。 String word1 = "bar"; String word2 = "foo"; String story = "Once upon a time, there was a foo and a bar." story = story.replace("foo", word1); story = story.replace("bar", word2); このコードの実行後、値がstoryされます"Once upon a time, there was a foo and a foo." 逆の順序で交換した場合も、同様の問題が発生します。 String word1 = "bar"; String word2 = …