View Single Post
Old 05-31-2018, 08:40 AM   #343
davidfor
Grand Sorcerer
davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.
 
Posts: 24,905
Karma: 47303824
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
Quote:
Originally Posted by yonkyunior View Post
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()
davidfor is offline   Reply With Quote