我无法让它正确匹配。它只打印“[help]”,但我希望它匹配括号内的字符。
想:
[help]
help
代码:
Pattern p = Pattern.compile("\\[(\\w+)\\]");
Matcher m = p.matcher("[help]");
m.find();
for (int i=0;i<m.groupCount(); i++) {
System.out.println(m.group(i));
}