「Java」replace()で文字列を置換する
書式
public String replace(CharSequence target,CharSequence replacement)
リテラル・ターゲット・シーケンスに一致するこの文字列の部分文字列を、指定されたリテラル置換シーケンスに置き換えます。
使用例
package com.arkgame.info; public class ReplaceDemo { public static void main(String[] args) { String strPath = "redirect://create"; strPath = strPath.replace("redirect", "forward"); System.out.println("置換: " + strPath); } }
結果
置換: forward://create