我希望这个正则表达式只产生 string acl
。我怎么做 ?我不断得到2013-
,即使我有一个否定运算符。
void testPattern()
{
Pattern pattern =
Pattern.compile("^.*-");
Matcher matcher =
pattern.matcher("2013-acl");
boolean found = false;
while (matcher.find())
{
println matcher.group();
}
}