ReplaceAll() 是String 類別的方法,它替換所有與其參數匹配的字符,所有子字串將被我們作為正則表達式傳遞給該方法的輸入替換,並替換給定的盯著這個方法將回傳我們String 物件。它存在於String類別(java.lang.String)這個套件裡面。在本主題中,我們將學習 Java 中的 ReplaceAll()。
開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
帶參數的語法
公有字串replaceAll(字串正規表示式,字串替換)
以上是replaceAll()方法的方法簽章。由於String類別提供了java in build方法,因此可以直接在我們的程式碼中使用。它需要兩個參數作為輸入:
此方法將始終傳回字串物件。還有一件事,正規表示式也使用一種模式,我們將在下面討論。
結果字串:作為輸出
replaceAll 是 String 類別中存在的方法。它需要兩個參數作為輸入,即正規表示式和替換。顧名思義,它用於替換字串的某些部分或整個字串。
此方法會拋出下面提到的異常:
這個異常是java中的未經檢查的異常,只有當我們作為輸入參數傳入方法的正規表示式有錯誤時才會發生。與其他類別一樣,它有一些預先定義或內建方法,可以幫助我們識別問題:
我們作為字串傳遞到方法參數中的正規表示式,但這個正規表示式是模式類別的編譯實例。它存在於 java.util.regex.Pattern 套件中。
這個正規表示式包含以下內容:
我們還有一個匹配器方法。它符合我們的正規表示式。
此模式類別也實作了可序列化介面。
這樣,replaceAll就可以在java中工作了。它在內部使用模式和匹配來編譯正規表示式和其他操作。
下面的範例展示如何使用它來替換單一字元、與正規表示式相符的整個字串、從整個字串中刪除空格以及用特殊字元替換字串。
在此範例中,我們將正規表示式作為 (.*)java(.*) 傳遞,以替換從頭到尾子字串為 java 的整個字串。
代碼:
import java.io.*; public class DemoReg { public static void main(String args[]) { String str = new String("Example to show replace in java string."); System.out.print("Resulted string after replace is :" ); System.out.println(str.replaceAll("(.*)java(.*)", "replaced")); } }
輸出:
在此範例中,我們用特殊字元取代字串的一部分。這意味著我們可以傳遞任何可以被視為字串的東西。我們也可以傳遞數字。
代碼:
public class DemoReg { public static void main(String args[]) { String s1="In this we are going to replace the string with some character. (repeat sequence)"; String str=s1.replaceAll("t*"," ***** "); System.out.println("Ouptut is ::: "); System.out.println(str); } }
輸出:
In this java class, we are replacing some part of the string with some other content. Example: “replacement done successfully” this in our case.
Code:
public class DemoReg { public static void main(String args[]) { String str="Now the demo is for replacing string with some another substring"; String result=str.replaceAll("string"," replacement done successfully"); System.out.println("Result after replace is :::: "); System.out.println(result); } }
Output:
In this example, we are trying to remove the spaces which are present in the given string. We have so many keywords with slashes (“\\”) that can be used to perform the given string’s operation.
Code:
public class DemoReg { public static void main(String args[]) { String str="Now we are going to replace the spaces present in the given string."; System.out.println("String before replace performed :::: "); System.out.println(str); String result=str.replaceAll("\\s",""); System.out.println("Result after replace is :::: "); System.out.println(result); } }
Output:
In this java example, we are replacing the string with a single character only. It means when the given character appears in the string each time, it will be replaced by the method.
Code:
public class DemoReg { public static void main(String args[]) { String str="Replacing single character from the whole string demo."; System.out.println("String before replace performed :::: "); System.out.println(str); String result=str.replaceAll("e"," X"); System.out.println("Result after replace is :::: "); System.out.println(result); } }
Output:
We can have anything in the replacement, which is a string. But our regular expression has to be valid; otherwise, it will throw an unchecked exception for error containing regular expression in the replaceAll() method.
Replace method is the string class method of java, which takes two parameters. Any type of regular expression we can pass in it will replace the string for us unless it matches. So the above example will give you an understanding that how we can use this.
以上是Java中的replaceAll()的詳細內容。更多資訊請關注PHP中文網其他相關文章!