Java 正則表示式元字元


子表示式/元字元“\t”與製表符匹配。

示例 1

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {
   public static void main( String args[] ) {
      String regex = "\t";
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter a string: ");
      String input = sc.nextLine();
      Pattern p = Pattern.compile(regex);
      Matcher m = p.matcher(input);
      int count = 0;
      while(m.find()) {
         count ++;
      }
      System.out.println("Number of tab spaces: "+count);
   }
}

輸出

Enter a string:
This    is    a    sentence    with    tab    spaces
Number of tab spaces: 6

示例 2

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {
   public static void main( String args[] ) {
      String regex = "\t";
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter a string: ");
      String input = sc.nextLine();
      Pattern p = Pattern.compile(regex);
      Matcher m = p.matcher(input);
      int count = 0;
      String result = "";
      while(m.find()) {
         result = m.replaceAll(" ");
      }
      System.out.println("Result: "+result);
   }
}

輸出

Enter a string:
This is a sentence with tab spaces
Result: This is a sentence with tab spaces

更新日期:19-11-2019

131 次瀏覽

開啟你的 職業生涯

完成課程認證

開始學習
廣告
© . All rights reserved.