码迷,mamicode.com
首页 > 编程语言 > 详细

Java 用正则表达式 截取字符串中的数字

时间:2014-10-11 20:49:06      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   java   sp   div   log   bs   

package com.benywave;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Test {
    public static void main(String[] args) {
        String str = "急救电话    112";
        Pattern pattern = Pattern.compile("[0-9]{1,}");
        Matcher matcher = pattern.matcher((CharSequence) str);
        while (matcher.find()) {
            if (!"".equals(matcher.group()))
            System.out.println("截取字符串中的数字为:" + matcher.group());
            }
    }
}

 

输出结果:     截取字符串中的数字为:112

Java 用正则表达式 截取字符串中的数字

标签:style   blog   color   ar   java   sp   div   log   bs   

原文地址:http://www.cnblogs.com/sphere/p/4019670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!