我正在尝试从以下论坛中提取引号: http://forum.xda-developers.com/showthread.php?t=1772338
所有人都使用:
Elements postquote = doc.select("table[cellpadding=6][cellspacing=0]");
但是:这个特定线程中的问题是,编辑器使用引号格式来格式化他的文本,而不是引用另一个用户。
我的方法是在“最初发布者”
中进行搜索Elements postquote = doc.select("table[cellpadding=6][cellspacing=0], table:contains(Originally Posted by)");
答案 0 :(得分:1)
如果您想查找同时包含table[cellpadding=6][cellspacing=0]
的{{1}},请使用
Originally Posted by
同样doc.select("table[cellpadding=6][cellspacing=0]:contains(Originally Posted by)").
代表,
,因此它会尝试找到OR
或somethingLikeThis
,这样它会产生额外的结果,而不是缩小它们。