25
İki dizeyi, diğerini değiştirmeyecek şekilde nasıl değiştirebilirim?
Diyelim ki aşağıdaki kod var: 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); Bu kod çalıştırıldıktan sonra değeri storyolacak"Once upon a time, there was a foo and a …