使用正規表示式從字串中提取數字
要使用正規表示式從字串中提取數字到整數數組中,您可以使用Java 中的模式和匹配器類別。解如下:
解如下:
Pattern p = Pattern.compile("-?\d+"); Matcher m = p.matcher("There are more than -2 and less than 12 numbers here"); LinkedList<Integer> numbers = new LinkedList<>(); while (m.find()) { numbers.add(Integer.parseInt(m.group())); } System.out.println(numbers); // prints [-2, 12]
說明:
以上是如何使用 Java 正規表示式從字串中提取數字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!