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

Posix 문자 클래스 \p{Sc} Java 정규식

<시간/>

이 클래스는 통화 기호와 일치합니다.

예시 1

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example1 {
   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();
      //Regular expression
      String regex = "\\p{Sc}";
      //Compiling the regular expression
      Pattern pattern = Pattern.compile(regex);
      //Retrieving the matcher object
      Matcher matcher = pattern.matcher(input);
      int count = 0;
      while(matcher.find()) {
         count++;
      }
      System.out.println("Number of alphabetic characters: "+count);
   }
}

출력

Enter a string
euro €, pounds £, dollar $, yen ¥
Number of alphabetic characters: 4

예시 2

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example2 {
   public static void main(String args[]) {
      //Regular expression to match lower case letters
      String regex = "^.*\\p{Sc}.*$";
      //Getting the input data
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter 5 input strings: ");
      String input[] = new String[5];
      for (int i=0; i<5; i++) {
         input[i] = sc.nextLine();
      }
      //Creating a Pattern object
      Pattern p = Pattern.compile(regex);
      System.out.println("Strings with alphabetic characters: ");
      for(int i=0; i<5;i++) {
         //Creating a Matcher object
         Matcher m = p.matcher(input[i]);
         if(m.matches()) {
            System.out.println(m.group());
         }
      }
   }
}

출력

Enter 5 input strings:
hello
sample
243test
# #$$@
£shelling
Strings with alphabetic characters:
# #$$@
£shelling