Java String replaceFirst()
方法將字串中的匹配給定正規表示式的第一個子字串替換。
語法
以下是此方法的語法 -
public String replaceFirst(String regex, String replacement)
regex
- 要與字串匹配的正規表示式。replacement
- 將替換找到的表示式的字串。import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Tw511.com");
System.out.print("Return Value :" );
System.out.println(Str.replaceFirst("(.*)Yii(.*)", "Kaops"));
System.out.print("Return Value :" );
System.out.println(Str.replaceFirst("Yiibai", "KAOPS"));
}
}
執行上面查詢語句,得到以下結果:
Return Value :Kaops
Return Value :Welcome to KAOPS.com