Apache Commons Text库中的NumberUtils类怎么截取字符传中的数字
时间: 2023-06-04 12:08:06 浏览: 195
NumberUtils类提供了许多用于操作数字的实用方法。要从字符串中提取数字,可以使用NumberUtils类的静态方法:public static int extractInt(String str),例如:int num = NumberUtils.extractInt("abc123def456"); // num = 123。除了extractInt(),NumberUtils还提供了extractDouble()和extractLong()方法,可以提取包含小数和长整型的字符串。