Top "Html-parsing" questions

HTML parsing is the process of consuming a serialization of an HTML document and producing a representation that you can work with programmatically — e.g., in order to extract data from it.

How to extract separate text nodes with Jsoup?

I have an element like this : <td> TextA <br/> TextB </td> How can I …

java html-parsing jsoup
php DOM getAttribute

Alright, so I have an odd case here that I just can't figure out. I want to parse a list …

php dom html-parsing domdocument getattribute
Calling a init function when a directive is loaded

I have a simple directive that loads comments from a service(commentsService): 'use strict'; angular.module('mean.rank') .directive('commentList', …

javascript html angularjs html-parsing angularjs-ng-init
MSHTML: CreateDocumentFromString instead of CreateDocumentFromUrl

I'd like to use the MSHTML library to parse some HTML that I have in a string variable. However, I …

vba vb6 html-parsing mshtml
getting attribute value from Div tag through jSoup

I have a Div tag as below <div id="eventTTL" style="text-transform: uppercase; font-weight: 900;" eventTTL="4583476000">5 days 07:14:41</div&…

java html-parsing jsoup
Using DOMDocument, is it possible to get all elements that exists within a certain DOM?

Let's say I have an HTML file with a lot of different elements, each having different attributes. Let's say I …

php parsing html-parsing domdocument
parsing/extracting a HTML Table, Website in Java

I want to parse the contents of this HTML table : Here is the full website with source code: http://www.…

html html-parsing jsoup html-table html-tableextract
Reading from a URL Connection Java

I'm trying to read html code from a URL Connection. In one case the html file I'm trying to read …

java url html-parsing urlconnection datainputstream
AngleSharp Parsing

Can't find many examples of using AngleSharp for parsing when you don't have a class name or id to use. …

c# html-parsing anglesharp
Remove attributes using HtmlAgilityPack

I'm trying to create a code snippet to remove all style attributes regardless of tag using HtmlAgilityPack. Here's my code: …

html html-parsing html-agility-pack