Using this webpage as an example http://forums.macrumors.com/showthread.php?t=1688317 On a google spreadsheet, the following DO NOT work with importxml():
//a[contains(@href,"showpost")]/@href
//a[contains(@href,"showcount")]/@href
//*[@id="postcount18545482"]
The last one (//*[@id="postcount18545482"]) was copied directly from Chrome's element viewer.
The following DO work but exclude any results with the word "showcount", "postcount", or "showpost":
//div[contains(@id,"post_message")]/@id
//a[contains(@href,"show")]/@href
//a[contains(@href,"post")]/@href
Is there something special about the word "count" when working with importxml() or XPATH? How can I get the missing entries?