0

我想为我的时间表做一个过滤器。我的做法是尝试删除 tr 不包含我的课程,然后我可以保留我需要的内容。但我不知道如何一起使用 :not 和 :contain 。有人帮忙吗?或提出其他想法?

tableRow = filterUse.select("tr:not(:contain("+lecture+"):contains("+lab+"):contains("+tutorial+"))").remove();

错误日志:

12-03 18:15:41.853: E/AndroidRuntime(2324): Caused by: org.jsoup.select.Selector$SelectorParseException: Could not parse query ':contain(L-2):contains(LAB-3):contains(T-3)': unexpected token at ':contain(L-2):contains(LAB-3):contains(T-3)'
4

1 回答 1

0

您可以使用:matches(regex):matchesOwn(regex)

tableRow = filterUse.select("tr:matches((?is)" + lecture + "|" + lab + "|" + tutorial + ")").remove;
于 2012-12-03T16:37:01.330 回答