當前位置:首頁 » 編程語言 » java取數

java取數

發布時間: 2023-03-06 16:24:43

java如何從字元串中提取數字

使用正則表達式可以很方便地從文本中截取數字,下面是詳細代碼:
class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{
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("");
}
}

熱點內容
如何製作土豆伺服器 發布:2024-11-07 05:27:49 瀏覽:811
機器碼反編譯教程 發布:2024-11-07 05:24:17 瀏覽:213
動遷三塊磚演算法 發布:2024-11-07 05:18:06 瀏覽:826
視窗壓縮 發布:2024-11-07 04:45:06 瀏覽:887
fc2點此訪問 發布:2024-11-07 04:45:04 瀏覽:760
上傳吊牌圖 發布:2024-11-07 04:38:48 瀏覽:919
密碼學什麼概念 發布:2024-11-07 04:38:48 瀏覽:848
linuxpdf轉word 發布:2024-11-07 04:37:06 瀏覽:213
安卓手機為什麼用ufs 發布:2024-11-07 04:15:09 瀏覽:559
資料庫刪除所有表 發布:2024-11-07 04:13:55 瀏覽:576