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

Popular posts from this blog

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -