Objective-C写的HTML5解析引擎:OCGumbo

jopen 11年前

OCGumbo是一个Objective-C写的HTML5解析引擎,基于Google gumbo开源项目。

OCGumbo除了基础的解析功能外,最大的特色是对增加了类似JQuery的查询功能。

示例代码:

OCGumboDocument *document = [[OCGumboDocument alloc] initWithHTMLString:htmlString];  OCGumboElement *root = document.rootElement;  //document: do something with the document.  //rootElement: do something with the html tree.    NSLog(@"options: %@", document.Query(@"body").find(@"#select").find(@"option"));    NSLog(@"title: %@", document.Query(@"title").text());    NSLog(@"attribute: %@", document.Query(@"select").first().attr(@"id"));    NSLog(@"class: %@", document.Query(@"#select").parents(@".main"));

项目主页:http://www.open-open.com/lib/view/home/1377094949975