Posix字符类Java正则表达式
此类\p{IsAlphabetic}与字母字符匹配。
例子1
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{IsAlphabetic}";
//Compiling the 正则表达式
Pattern pattern = Pattern.compile(regex);
//检索匹配器对象
Matcher matcher = pattern.matcher(input);
int count = 0;
while(matcher.find()) {
count++;
}
System.out.println("Number of alphabetic characters: "+count);
}
}输出结果
Enter a string sample text Number of alphabetic characters: 10
例子2
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example2 {
public static void main(String args[]) {
//正则表达式 to match lower case letters
String regex = "^.*\\p{IsAlphabetic}.*$";
//获取输入数据
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();
}
//创建一个Pattern对象
Pattern p = Pattern.compile(regex);
System.out.println("Strings with alphabetic characters: ");
for(int i=0; i<5;i++) {
//创建一个Matcher对象
Matcher m = p.matcher(input[i]);
if(m.matches()) {
System.out.println(m.group());
}
}
}
}输出结果
Enter 5 input strings: hello sample 243test ##$$@ 222356 Strings with alphabetic characters: hello sample 243test
热门推荐
10 带猫的祝福语简短
11 爱心大叔生日祝福语简短
12 结婚祝福语简短精彩短句
13 亲人喜得贵子祝福语简短
14 作文老师寄语简短祝福语
15 订婚祝福语简短诗句
16 分手的祝福语女生简短
17 老婆祝福语简短8字
18 如果不结婚祝福语简短