1
2
3
4
String regEx ="href=\"//book.qidian.com/info/(\\d+)\"";
Pattern p = Pattern.compile(regEx, Pattern.CASE_INSENSITIVE);
Matcher m = p.matcher(str);
if(m.find()) bookID = m.group(1); // 第一个括号