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

Javaの正規表現\Gメタ文字


部分表現/メタ文字「\ G 」は、最後の一致が終了したポイントと一致します。

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 = "\\G[0-9]";
      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 digits = "";
      System.out.println("Digits in the previous match:");
      while(m.find()) {
         System.out.print(m.group());
         count ++;
      }
      System.out.println();
      System.out.println("Number of matches: "+count);
   }
}

出力

Enter a string:
555 sample text
Digits in the previous match:
555
Number of matches: 3

  1. Javaの正規表現$(ドル)メタ文字

    部分表現/メタ文字「$ 」は行の終わりに一致します。 例1 import java.util.regex.Matcher; import java.util.regex.Pattern; public class EndWith {    public static void main( String args[] ) {       String regex = "Tutorialspoint$";       String input = "Hi how are you welco

  2. 正規表現^(caret)Javaのメタ文字

    部分表現/メタ文字“ ^” 行の先頭に一致します。これを正規表現で使用すると、入力文字列の後続の文と一致します。 例1 import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexExample {    public static void main( String args[] ) {       String regex = "^Hi how are you";       Strin