大家好,我正在尝试检索这两个标签之间的链接,例如此处的文本,然后它将其存储在列表中,我如何使用模式和匹配器检索这些文本
public void getlinks() {
Pattern Start = Pattern.compile(this.PatternStart); //<Link>
Pattern End = Pattern.compile(this.PatternEnd); //</Link>
Matcher mStart = Start.matcher(this.Source); // matches Start
Matcher mEnd = End.matcher(this.Source); // matches end
????????????
}
试图找到一个 html 源代码之间和内部的链接,仅用作示例