xpath to extract all different id in yahoo pipes -


i'm trying build rss feed website page using yahoo pipes tool.

i able extract 1 id web page using "xphat fetch page" yahoo pipes:

//*[@id="ctr3262_mainview_viewblog_lstblogview_lnkentry_0" 

the others id different: ..lstblogview_lnkentry_1, ..lstblogview_lnkentry_2 , on.

this portion of html file:

< div class="vbentry" > < h2 > < id="ctr3262_mainview_viewblog_lstblogview_lnkentry_1" rel="bookmark" href="http://www.site.com/blogs/entryid/12">word1-word2-word3 < /a > < /h2 >  < div class="vbheader dnnclear" > < href='http:/www.site.com/ipse dixit' > ipse dixit < /a > ,  < span id="ctr3262_mainview_viewblog_lstblogview_lblpublishdate_1" >sunday 7 december 2012 17:31 < /span > < div class="dnnright" >< /div > < /div > 

how can view id page?

if looking elements id id contains text use this

"//*[contains(@id, 'lstblogview_lnkentry_') ]" 

all elements id:

"//*[@id ]" 

all ids:
take answer @jens erat


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -