java正则表达式提取数字的方法实例

时间:2022-07-09 12:49:31 


@Test
    public void test33() {
        String phoneString = "哈哈,13888889999";
        // 提取数字
        // 1
        Pattern pattern = Pattern.compile("[^0-9]");
        Matcher matcher = pattern.matcher(phoneString);
        String all = matcher.replaceAll("");
        System.out.println("phone:" + all);
        // 2
        Pattern.compile("[^0-9]").matcher(phoneString).replaceAll("");
    }

 提取张三,去除数字


@Test
    public void test() {
        // 提取张三 去除数字
        String r_name3 = "张三 13599998888 000000";
        Pattern pattern = Pattern.compile("[\\d]");
        Matcher matcher = pattern.matcher(r_name3);
        System.out.println(matcher.replaceAll("").trim());
    }

标签:正则表达式提取数字
0
投稿

猜你喜欢

  • 使用Python实现企业微信通知功能案例分析

    2022-12-26 05:03:48
  • 用于业余项目的8个优秀Python库

    2022-04-04 09:44:51
  • 利用js获取下拉框中所选的值

    2024-05-02 16:12:10
  • Python实现随机取一个矩阵数组的某几行

    2021-10-04 16:45:52
  • JS获取页面窗口实际大小函数

    2008-01-28 13:18:00
  • Python+Pygame实现神庙逃亡游戏

    2022-06-12 16:26:28
  • 详解python3 GUI刷屏器(附源码)

    2022-02-02 12:34:15
  • FrontPage2002简明教程七:HTML在FrontPage中的应用

    2008-09-17 11:33:00
  • 利用Python正则表达式过滤敏感词的方法

    2023-05-07 05:05:18
  • 浅谈几种常用的JS类定义方法

    2024-04-22 12:56:56
  • laravel中短信发送验证码的实现方法

    2023-11-15 08:05:16
  • Python3使用requests模块实现显示下载进度的方法详解

    2021-03-26 21:14:52
  • Python使用Nocalhost并开启debug调试的方法

    2023-05-04 11:22:46
  • Python还能这么玩之用Python做个小游戏的外挂

    2022-12-11 18:27:43
  • SQL Server 2016 CTP2.2安装配置方法图文教程

    2024-01-18 19:04:29
  • Asp的上下午时间格式问题

    2009-04-13 16:06:00
  • python实现SMTP邮件发送功能

    2023-11-11 08:04:03
  • 最新LOGO设计流行趋势——叶子

    2007-10-02 18:26:00
  • Python爬虫入门教程01之爬取豆瓣Top电影

    2023-05-22 16:45:00
  • mysql split函数用逗号分隔的实现

    2024-01-19 12:46:40
  • asp之家 网络编程 m.aspxhome.com