// returns snippet IDs static L tbSearch_simple(S query) { S page = loadPage(tb_mainServer() + "/tb/search.php?q=" + urlencode(query)); Matcher m = Pattern.compile(">(#\\d+) - (.*?)
").matcher(page); new L results; while (m.find()) results.add(m.group(1)); ret results; }