ReplaceAll() は、パラメータと一致する文字の出現をすべて置き換える String クラスのメソッドです。すべての部分文字列は、正規表現としてメソッドに渡した入力と指定された文字列の置換によって置き換えられます。このメソッドを開始すると、String オブジェクトが返されます。このパッケージの String クラス (java.lang.String) 内に存在します。このトピックでは、Java の replaceAll() について学びます。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
パラメータを含む構文
public String replaceAll(文字列正規表現、文字列置換)
上記は replaceAll() メソッドのメソッド シグネチャです。 String クラスによって提供される java in build メソッドにより、これをコード内で直接使用できます。入力として 2 つのパラメータを取ります:
このメソッドは常に文字列オブジェクトを返します。もう 1 つ、正規表現ではパターンも使用されます。これについては後で説明します。
結果の文字列: 出力として
replaceAll は String クラスに存在するメソッドです。正規表現と置換という 2 つのパラメータを入力として受け取ります。名前が示すように、文字列の一部または文字列全体を置き換えるのに使用されます。
このメソッドは以下の例外をスローします:
この例外は Java の未チェック例外で、メソッドに入力パラメータとして渡す正規表現にエラーがある場合にのみ発生します。他のクラスと同様に、問題を特定するのに役立つ事前定義または組み込みメソッドがあります。
メソッドのパラメータに文字列として渡す正規表現ですが、この正規表現はパターン クラスのコンパイル済みインスタンスです。これは java.util.regex.Pattern パッケージに存在します。
この正規表現には次のものが含まれます:
これには matcher メソッドもあります。正規表現に準拠しています。
このパターン クラスはシリアル化可能なインターフェイスも実装します。
このようにして、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 中国語 Web サイトの他の関連記事を参照してください。