假设要匹配${2}中间为数字的这个类型的变量String,则

Pattern p = Pattern.compile("\\$\\{\\d+\\}");
Matcher m = p.matcher(String);
boolean b = m.find();
while (b) {

  //后续操作……

}

posted on 2015-11-13 10:18  程序员丁先生  阅读(1750)  评论(0编辑  收藏  举报