private static Pattern DIGIT_PATTERN = Pattern.compile("=\\d++");

Matcher goodsTypeMatcher = DIGIT_PATTERN.matcher(scoreFour);
   if (goodsTypeMatcher.find()) {
      String comment = goodsTypeMatcher.group();
      generalComments+=Integer.valueOf(comment);
   }

 

相关文章:

  • 2021-11-04
  • 2022-12-23
  • 2022-12-23
  • 2021-10-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-01
相关资源
相似解决方案