1
Aidenboss 2018 年 11 月 10 日
Pattern pattern = Pattern("([0-9]+)");
Matcher matcher = pattern.compile(pattern, str); if (matcher.find()) { long number = NumberUtils.toLong(matcher.group(1)); } |