博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java利用正则截取字符串中的数字
阅读量:5170 次
发布时间:2019-06-13

本文共 396 字,大约阅读时间需要 1 分钟。

String str = "xxx第47297章33";        String regex = "\\d*";        Pattern p = Pattern.compile(regex);        Matcher m = p.matcher(str);while (m.find()) {if (!"".equals(m.group()))                System.out.println("come here:" + m.group());}

打印结果为

come here:47297come here:33
 

 

 

 

 

 

posted on
2013-03-26 09:25  阅读(
...) 评论(
...) 收藏

转载于:https://www.cnblogs.com/liangge0218/archive/2013/03/26/3292379.html

你可能感兴趣的文章
C++ 面向对象 类成员函数this指针
查看>>
NSPredicate的使用,超级强大
查看>>
自动分割mp3等音频视频文件的脚本
查看>>
判断字符串是否为空的注意事项
查看>>
布兰诗歌
查看>>
(转)Tomcat 8 安装和配置、优化
查看>>
(转)Linxu磁盘体系知识介绍及磁盘介绍
查看>>
跨域问题整理
查看>>
[Linux]文件浏览
查看>>
获取国内随机IP的函数
查看>>
今天第一次写博客
查看>>
江城子·己亥年戊辰月丁丑日话凄凉
查看>>
Spring Mvc模式下Jquery Ajax 与后台交互操作
查看>>
(转)matlab练习程序(HOG方向梯度直方图)
查看>>
面试整理:Python基础
查看>>
Program exited with code **** 相关解释
查看>>
tableView
查看>>
Happy Great BG-卡精度
查看>>
Xamarin Visual Studio不识别JDK路径
查看>>
菜鸟“抄程序”之道
查看>>