- 授权协议: Apache
- 开发语言: Objective-C
- 操作系统: OS X
- 软件首页: https://github.com/tracy-e/OCGumbo
- 软件文档: https://github.com/tracy-e/OCGumbo
- 官方下载: https://github.com/tracy-e/OCGumbo
软件介绍
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")); NSLog(@"tag.class: %@", document.Query(@"div.theCls")); NSLog(@"tag#id : %@", document.Query(@"div#theId"));
Advanced Web Metrics with Google Analytics
Brian Clifton / Sybex / 2008 / USD 39.99
Are you getting the most out of your website? Google insider and web metrics expert Brian Clifton reveals the information you need to get a true picture of your site's impact and stay competitive usin......一起来看看 《Advanced Web Metrics with Google Analytics》 这本书的介绍吧!
