「Java」replace()で文字列を置換する
書式
対象の文字列.replace(置換前文字列, 置換後文字列)
サンプルコード
String strA = “tokyo888tokyo888";
String strB = strA.replace(“tokyo", “test");
System.out.println(strB);
結果
test888test888
Coding Changes the World
書式
対象の文字列.replace(置換前文字列, 置換後文字列)
サンプルコード
String strA = “tokyo888tokyo888";
String strB = strA.replace(“tokyo", “test");
System.out.println(strB);
結果
test888test888