dom - CSS Template Selector for generic id -
dom - CSS Template Selector for generic id -
i have multiple tables in file , want search tables have id = table-<some_value>
for specific id(table)
using
document doc = jsoup.parse(content); elements tablerows = doc.select("#table");
please suggest me if there alternative find tables starts 'table-'.
here code problem
doc.select("table[id^=table-]");
reference link:
http://www.w3schools.com/cssref/css_selectors.asp http://www.w3schools.com/cssref/sel_attr_begin.asp dom css-selectors jsonp jsoup
Comments
Post a Comment