我正在尝试在 HTML 文档中查找数据。我不需要一个完整的解析器,因为它只是一个标签之间的数据。
但是,我想检测“选择”标签和介于两者之间的数据。
return Pattern.compile(pattern,
Pattern.CASE_INSENSITIVE | Pattern.MULTILINE |
Pattern.DOTALL);
/// End right angle bracket left off intentionally:
track_pattern_buf.append("<select");
track_pattern_buf.append("(.*?)");
track_pattern_buf.append("</select");
这是您将使用的“正则表达式”吗?