正则表达式在字符串处理上有着强大的功能,sun在jdk1.4加入了对它的支持
下面简单的说下它的4种常用功能:
查询:
String str="abc efg ABC";
String regEx="af"; //表示a或f
Pattern p=Pattern.compile(regEx);
Matcher m=p.matcher(str);
boolean rs=m.find();
假如str中有regEx,那么rs为true,否则为flase。假如想在查找时忽略大小写,则可以写成Pattern p=Pattern.compile(regEx,Pattern.CASE_INSENSITIVE);
提取:
String regEx=".+(.+)$";
String str="c:dir1dir2ame.txt";
Pattern p=Pattern.compile(regEx);
...[ 查看全文 ]