Java 中的标点符号正则表达式
首先,我正在阅读文档,如下所示
http://download.oracle.com/javase/1.4.2/docs/api/java/util/regex/Pattern.html
我想找到任何标点符号字符,除了@',但我不太明白。
这里是:
public static void main( String[] args )
{
// String to be scanned to find the pattern.
String value = "#`~!#$%^";
String pattern = "\\p{Punct}[^@',&]";
// Create a Pattern object
Pattern r = Pattern.compile(pattern, Pattern.CASE_INSENSITIVE);
// Now create matcher object.
Matcher m = r.matcher(value);
if (m.find()) {
System.out.println("Found value: " + m.groupCount());
} else {
System.out.println("NO MATCH");
}
}
结果为不匹配。
是否存在任何不匹配?
谢谢
MRizq