Quote:
Originally Posted by yonkyunior
need help, for importing list from worldswithoutend,
http://worldswithoutend.com/lists_cl...f.asp?type=xml
Row
//*[@id="reportlist"]//div[@class="awardslisting"]
Title
p[@class="title"]/text()
Author
p[@class="author"]/text()
the marker show the right match, but, the field table empty..
|
The result of your expressions for the title and author include a carriage return and lot of extra spaces. You need to be a bit more specific with these The following seems to work:
Row
//div[@class="awardslisting"]
Title
p[@class="title"]/a/text()
Author
p[@class="author"]/a/text()