美文网首页
取一串数字中的数字串

取一串数字中的数字串

作者: 逐鹿者不见山 | 来源:发表于2016-12-27 13:19 被阅读9次

    Pattern p = Pattern.compile("\d{2,}");//这个2是指连续数字的最少个数
    String u = "abc435345defsfsaf564565fsabad5467755fewfadfgea";
    Matcher m = p.matcher(u);
    int i = 0;
    while (m.find()) {
    System.out.println(m.group());
    i++;
    }
    System.out.println(i);

    相关文章

      网友评论

          本文标题:取一串数字中的数字串

          本文链接:https://www.haomeiwen.com/subject/zxzsvttx.html