我有一个从网站响应中获得的 html 字符串。我在那里所做的一切都很棒,我没有任何困难。我需要做的是在 html 中获取 only href 属性。获取该属性中包含的此 URL 的最佳方法是什么。如果有必要,我对任何外部库都是开放的,我只想要最有效的方式。谢谢。
Best Answer-推荐答案 strong>
使用此 API 解析 HTML 代码并选择您想要的元素。
ElementParser 是轻量级框架,可轻松访问 xml 和 html 内容。它不想迷失在 HTML 和 XML 规范的复杂性中,而是希望不掩盖它们本质上的简单性。它不会做所有事情,它渴望做到“刚刚好”。
来源:http://touchtank.wordpress.com/element-parser/
这里是一个如何使用 ElementParser 和你自己的例子的例子。我希望这会有所帮助。
圣诞快乐!嗬嗬嗬
// Here you create the parser, don't forget to #import "Element.h" and #import "ElementParser.h"
ElementParser * parser = [[ElementParser alloc] init];
// This is the HTML source code that you want to parse
DocumentRoot* document = [parser parseHTML"<html><a href=\"http://google.com\">Google Link</a></html>"];
// Create an array where you will put all the <a></a> elements
NSArray* elements = [document selectElements: @"a"];
// Iterate though the array, for each element pick the "href" attribute
NSMutableArray* results = [NSMutableArray array];
for (Element* element in elements){
NSString* snipet = [element attribute"href"];
// Add the result for each element to the "results" array
[results addObject: snipet];
}
// Print the results on the screen
NSLog(@"%@",[results componentsJoinedByString: @"\n"]);
关于iphone - 从字符串 iPhone 中提取 HTML 属性,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/8622741/
|