程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> java正則表達式提取數字的辦法實例

java正則表達式提取數字的辦法實例

編輯:關於JAVA

java正則表達式提取數字的辦法實例。本站提示廣大學習愛好者:(java正則表達式提取數字的辦法實例)文章只能為提供參考,不一定能成為您想要的結果。以下是java正則表達式提取數字的辦法實例正文



@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());
    }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved