Java 给定字符串中找到数字

public myTest{
    public static StringBuilder hhhh(String value) {
        StringBuilder sb = new StringBuilder();
        String strIndex = "";
        // String regex = "\\d*"; 可以用String 但最终结果只有后面的数字 例子中的只能显示222222222,因为会被替代
        Pattern pattern = Pattern.compile(regex);
        Matcher match = pattern.matcher(value);
        while (match.find()) {
            if (!"".equals(match.group()))
                 sb.append(match.group());
        }
        return sb;
    }

    public static void main(String[] args) {
        String str = "xxxxgggggg2222222[1111uuuuuuuuuu222222222";
        System.out.println(hhhh(str));
    }
}

执行结果:

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容