截取字符串中的纯数字

 
  
    public String getNumbers(String content) {
  
    Pattern pattern = Pattern.compile("\\d+");
  
    Matcher matcher = pattern.matcher(content);
  
    while (matcher.find()) {
  
        return matcher.group(0);
  
    }
  
        return "";
  
    }
posted @ 2016-09-22 22:23  wmcjda  阅读(247)  评论(0编辑  收藏  举报