how to extract numeric values from input string in java

后端 未结 15 1732
说谎
说谎 2020-12-13 16:25

How can I extract only the numeric values from the input string?

For example, the input string may be like this:

String str=\"abc d 1234567890pqr 548         


        
15条回答
  •  有刺的猬
    2020-12-13 17:06

    You could do something like:

    Matcher m = Pattern.compile("\\d+").matcher(str);
    while (m.find()) {
       System.out.println(m.group(0));
    }
    

提交回复
热议问题