OCGumboHTML5解析引擎
OCGumbo是一個Objective-C寫的HTML5解析引擎,基于Google gumbo開源項目。
OCGumbo除了基礎(chǔ)的解析功能外,最大的特色是對增加了類似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")); NSLog(@"tag.class: %@", document.Query(@"div.theCls")); NSLog(@"tag#id : %@", document.Query(@"div#theId"));
評論
圖片
表情
