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 に答える