如何从字符串中匹配数字整数并返回整数值?
例如;
String = "Color Red, Size 32 / Text text";
我想从该字符串中获取“ 32”整数值。
提前谢谢了。
问候,
可可
最佳答案
public static void main(String[] args) {
String s = "Color Red, Size 32 / Text text";
Matcher matcher = Pattern.compile("\\d+").matcher(s);
if (matcher.find()) {
String find = matcher.group();
Integer i = Integer.parseInt(find);
}
}
关于java - Java Matcher Digit方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6845399/