0
基本上我需要從這個html文件解析td(表格數據)。我需要得到正確的xpath.I使用raywenderlich作爲這個任務的模型,這裏是代碼I迄今爲止。試圖從html中拉出tabledata
NSURL *tutorialsUrl = [NSURL URLWithString:@"http://example.com/events];
NSData *tutorialsHtmlData = [NSData dataWithContentsOfURL:tutorialsUrl];
// 2
TFHpple *tutorialsParser = [TFHpple hppleWithHTMLData:tutorialsHtmlData];
// 3
NSString *tutorialsXpathQueryString = @"This is where I need to enter my xpath to rerieve the table data";
NSArray *tutorialsNodes = [tutorialsParser searchWithXPathQuery:tutorialsXpathQueryString];
我有這個元素的HTML路徑感謝螢火蟲,我會在下面發表。
/<html lang="en">/<body>/div id="page" class="container">/<div class="span-19">/<div id="content">/<div>/<table id=yw0 class="detail-view">/<tbody>/<tr class="even">/<td>moo</td>/
我需要解析文本moo。任何幫助將深表謝意。
這是我從螢火蟲中得到的x路徑,但它根本不起作用。
/html/body/div/div[4]/div/div/table/tbody/tr[2]/td
我不想打擾你太多,但你可以告訴我這將如何在我的代碼中工作?我有點困惑,但似乎你對此非常瞭解。 –
我編輯了我的答案。你只需要將你的NSData轉換爲NSString並使用這個字符串來代替我的originalText – Reconquistador