Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jsoup like parser for C++/C? [closed]

Tags:

c++

c

jquery

jsoup

Are there any open source Jsoup/jQuery like parser/selector engine for C++/C?

like image 641
newbie Avatar asked Nov 09 '11 07:11

newbie


People also ask

Is jsoup open source?

In this article, I will focus on one of my favorites, jsoup, which was first released as open source in January 2010. It has been under active development since then by Jonathan Hedley, and the code uses the liberal MIT license.

What is jsoup parse?

Description. The parse(String html) method parses the input HTML into a new Document. This document object can be used to traverse and get details of the html dom.

What is jsoup Android?

Jsoup is a Java html parser. It is a Java library that is used to parse html documents. Jsoup gives programming interface to concentrate and control information from URL or HTML documents. It utilizes DOM, CSS and Jquery-like systems for concentrating and controlling records.


1 Answers

The newly open sourced c HTML5 parser gumbo-parser from google: https://github.com/google/gumbo-parser

like image 86
lulyon Avatar answered Oct 25 '22 10:10

lulyon