Java
 Computer >> コンピューター >  >> プログラミング >> Java

Java正規表現(RegEx)を使用して空白を削除する方法


正規表現「\\s」は、文字列内のスペースと一致します。 replaceAll()メソッドは文字列を受け入れ、正規表現は一致した文字を指定された文字列に置き換えます。入力文字列からすべての空白を削除するには、 replaceAll()を呼び出します。 上記の正規表現と空の文字列を入力としてバイパスするメソッド。

例1

public class RemovingWhiteSpaces {
   public static void main( String args[] ) {
      String input = "Hi welcome to tutorialspoint";
      String regex = "\\s";
      String result = input.replaceAll(regex, "");
      System.out.println("Result: "+result);
   }
}

出力

Result: Hiwelcometotutorialspoint

例2

同様に、 appendReplacement() メソッドは文字列バッファと置換文字列を受け入れ、一致した文字を指定された置換文字列に追加し、文字列バッファに追加します。

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RemovingWhiteSpaces {
   public static void main( String args[] ) {
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter input string: ");
      String input = sc.nextLine();
      String regex = "\\s";
      String constants = "";
      System.out.println("Input string: \n"+input);
      //Creating a pattern object
      Pattern pattern = Pattern.compile(regex);
      //Matching the compiled pattern in the String
      Matcher matcher = pattern.matcher(input);
      //Creating an empty string buffer
      StringBuffer sb = new StringBuffer();
      while (matcher.find()) {
         constants = constants+matcher.group();
         matcher.appendReplacement(sb, "");
      }
      matcher.appendTail(sb);
      System.out.println("Result: \n"+ sb.toString()+constants );
   }
}

出力

Enter input string:
this is a sample text with white spaces
Input string:
this is a sample text with white spaces
Result:
thisisasampletextwithwhitespaces

例3

public class Just {
   public static void main(String args[]) {
      String input = "This is a sample text with spaces";
      String str[] = input.split(" ");
      String result = "";
      for(int i=0; i<str.length; i++) {
         result = result+str[i];
      }
      System.out.println("Result: "+result);
   }
}

出力

Result: Thisisasampletextwithspaces

  1. Javaの正規表現\d構文

    部分表現/メタ文字「\d 」は数字と一致します。 例1 import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexExample {    public static void main( String args[] ) {       String regex = "\\d 24";       String input = "This is sample text 12 24

  2. Javaの正規表現\Sメタ文字

    部分式/メタ文字「\S」は空白以外の文字と一致します。 例1 import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexExample {    public static void main( String args[] ) {       String regex = "\\S";       String input = "Hello how are you welcome