如何替換字串?

2019-10-16 22:31:14

在Java中,如何用一個字串替換另一個字串中的子串?

這個例子描述了如何使用java String類的replace()方法來使用新的字元或子字串替換字串中指定的子字串。

package com.yiibai;

public class StringReplaceEmp {
    public static void main(String args[]) {
        String str = "Welcome to tw511.com";
        System.out.println("Result 1:"+str.replace('W', 'H'));
        System.out.println("Result 2:"+str.replaceFirst("He", "Wo"));
        System.out.println("Result 3:"+str.replaceAll(".com", ".cn"));
    }
}

執行上面範例程式碼,得到以下結果 -

Result 1:Helcome to tw511.com
Result 2:Welcome to tw511.com
Result 3:We.cne to yiibai.cn