我正在尝试使用正则表达式在 HTML 行中获取一行的一部分,但我无法让它工作。
这是html(必要)部分:
(five random numbers)/ ">(the word I want to extract, between 2 and 45 characters)<
所以我正在使用这个正则表达式:
"[0-9]{5}\\/\\\"\\s\\>(\\.{1,45})\\<"
我无法让它工作......
当我尝试通过group()
我.find()
的Matcher
. 希望我足够清楚!