Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a CSS3 selector driven Document Object Model (DOM) API for Delphi? [closed]

Or something that allows you to parse HTML in a similar way to JQuery?

If not, in your opinion what is the best way to parse though HTML without having to be a regular expression expert and not rely on Internet Explorer to parse information for you? (AKA, not rely on something like: IEParser by bsalsa.com)

Thanks

-Brad

like image 605
Brad Avatar asked Jan 15 '10 00:01

Brad


People also ask

What does DOM API consists of?

The Document Object Model (DOM) is an application programming interface (API) for HTML and XML documents. It defines the logical structure of documents and the way a document is accessed and manipulated.

What is DOM What is the use of document object?

What is the DOM? The Document Object Model (DOM) is a programming interface for web documents. It represents the page so that programs can change the document structure, style, and content. The DOM represents the document as nodes and objects; that way, programming languages can interact with the page.

What does DOM API consists Mcq?

Explanation: dom is a hierarchical model i.e. a tree used to represent an html or xml document. every node of the tree an object that represents a part of the document.

What is CSS DOM?

The CSS Object Model is a set of APIs allowing the manipulation of CSS from JavaScript. It is much like the DOM, but for the CSS rather than the HTML. It allows users to read and modify CSS style dynamically. The values of CSS are represented untyped, that is using String objects.


1 Answers

Take a look at diHtmlParser which I believe will give you what your after.

like image 85
skamradt Avatar answered Sep 24 '22 20:09

skamradt