Posix字符类\ p {InGreek} Java正则表达式
此类\p{InGreek}与希腊字符匹配。
示例
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example1 {
public static void main(String args[]) {
//从用户读取字符串
System.out.println("Enter a string");
Scanner sc = new Scanner(System.in);
String input = sc.nextLine();
//正则表达式
String regex = "\\p{InGreek}";
//Compiling the 正则表达式
Pattern pattern = Pattern.compile(regex);
//检索匹配器对象
Matcher matcher = pattern.matcher(input);
int count = 0;
while(matcher.find()) {
count++;
}
System.out.println("Number of Greek characters: "+count);
}
}输出结果
Enter a string sample text αγ ηθ ξψ Number of Greek characters: 6
例
import java.util.Scanner;
public class Example {
public static void main(String args[]) {
//从用户读取字符串
System.out.println("Enter a string");
Scanner sc = new Scanner(System.in);
String input = sc.nextLine();
//正则表达式
String regex = "^.+\\p{InGreek}.+";
boolean result = input.matches(regex);
if(result) {
System.out.println("Given string contains Greek characters");
} else {
System.out.println("Given string doesn’t contain Greek characters ");
}
}
}输出结果
Enter a string sample text αγ Given string contains Greek characters
热门推荐
10 新年门口花束祝福语简短
11 盘锦结婚祝福语大全简短
12 父母生日祝福语 简短独特
13 家庭恩爱祝福语简短英文
14 高考俄语祝福语大全简短
15 虎年祝福语 诗句唯美简短
16 生日婚礼祝福语简短精辟
17 虎年喝酒拜年祝福语简短
18 教师闺蜜祝福语简短