Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

Java RegEx를 사용하여 단어 문자를 일치시키는 방법은 무엇입니까?

<시간/>

영어 알파벳(두 경우 모두) 및 숫자(0~9)는 단어 문자로 간주됩니다. 메타 문자 "\w"를 사용하여 일치시킬 수 있습니다.

예시 1

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example {
   public static void main(String args[]) {
      //Reading String from user
      System.out.println("Enter a String");
      Scanner sc = new Scanner(System.in);
      String input = sc.nextLine();
      String regex = "^\\w{5}";
      //Compiling the regular expression
      Pattern pattern = Pattern.compile(regex);
      //Retrieving the matcher object
      Matcher matcher = pattern.matcher(input);
      if(matcher.find()) {
         System.out.println("Match occurred");
      } else {
         System.out.println("Match not occurred");
      }
   }
}

출력 1

Enter a String
hello
Match occurred

출력 2

Enter a String
#how
Match not occurred

예시 2

import java.util.Scanner;
public class RegexExample {
   public static void main( String args[] ) {
      //regular expression to accept word characters
      String regex = "\\w*";
      System.out.println("Enter input value: ");
      Scanner sc = new Scanner(System.in);
      String input = sc.nextLine();
      boolean bool = input.matches(regex);
      if(bool) {
         System.out.println("match occurred");
      } else {
         System.out.println("match not occurred");
      }
   }
}

출력

Enter input value:
*##&
match not occurred