HTML parsing refers to the process of converting an HTML document to a tree-based Document Object Model with the goal of extracting information.

learn more… | top users | synonyms (1)

0
votes
1answer
43 views

simplify this python generation

I am new to python. Is there a way to simplify this: def getDivs(): divs = soup.findAll(name = "div", attrs = {"class" : "resultCell"}, recursive = True) for div in divs: h2 = ...
0
votes
1answer
24 views

Replacing an element with HTMLParser in python and using pscyopg2

In my database I have values like this: <p class="description">Text here <a href=#>Text here</a> </p> And I need that whole <p> object to replace the same <p ...
0
votes
1answer
33 views

How to write/overwrite a file with HTMLParser

I need to create some files from a template. I'm using psycopg2 to fetch from a database. Then I loop through. Now I need to write to file. Thanks! import sys from HTMLParser import HTMLParser from ...
0
votes
1answer
22 views

Facebook ad preview html snippet

According to facebook's docs, I can get an HTML preview snippet of my ad with this request: https://graph.facebook.com/CREATIVE_ID/previews?accesstoken=MY_ACCESS_TOKEN So I did and I got this: ...
0
votes
2answers
63 views

Replacing HTML tags with text attributes [duplicate]

I'm getting data from a web service and the result contains some HTML tags, that I'm then trying to convert. For example, I want to replace <P> tags with line breaks, and <STRONG> from ...
2
votes
1answer
116 views

Regular expression to replace words in web pages

I was looking for a regular expression (php) to find/replace some words in a web page. But, it cant replace words between all html tags, only between: italic <i>, bold <b> and plain text. ...
0
votes
2answers
32 views

Cross-domain HTML source extraction using JavaScript

Say I am in domain abc.com. I want to be able to get the HTML source of a page on xyz.com and then parse it using JavaScript. I know there is restriction of same origin policy, and I tried CORSwhich ...
0
votes
1answer
56 views

Sum colum in an html table using C# and html-agility-pack

How do I sum the values in a specific column of a specific table when the number of rows are unpredictable? Note that the header row contains text and uses "" instead of "". Using the sample html ...
0
votes
0answers
47 views

How to parse a table from a html page and is it possible to parse multiple html's at once in php [duplicate]

I am trying to parse a tabular structured data from a html page.. It has the following structure <table> <tr> <td><a href="url">name</a></td> ...
0
votes
0answers
15 views

Grabbing the first child of a <tr> tag?

Currently I'm following Ray Wenderlich's tutorial dealing with parsing html on ios. Everything is explained perfectly and according to this tree: they extract the title and url tag for each ...
0
votes
2answers
71 views

PHP - Parsing html tables via DOM

So I am using the PHP Simple HTML DOM Parser and I am trying to get the table list of Top Goalscorers from this webpage: ...
0
votes
2answers
40 views

how to get text between a specific span with HtmlUnit

I'm new to HtmlUnit and I'm not even sure if it is the right tool for my project. I'm trying to parse a website and extract the values I need from it. I need to get the value "07:05" from this, ...
0
votes
0answers
34 views

Multiple handlebar #each blocks

I am working on handlebars in my project and i wanted to see if anyone knows if its possible to include multiple {{#each this}} blocks in a HTML page. I am currently using the below block to output ...
1
vote
1answer
60 views

Simple HTML DOM Parser - Get all plaintex rather than text of certain element

I tried all the solutions posted on this question. Although it is similar to my question, it's solutions aren't working for me. I am trying to get the plain text that is outside of <b> and it ...
0
votes
0answers
26 views

Grab the second image source from the thread

Ok I'm using vbulletin. What i am trying to do is grab an image from a thread and display it on the forum home. Now i have a mod that does this and it does almost exactly what i want it to do. Here ...
1
vote
1answer
43 views

HtmlAgilityPack: Given a html file, how can I get nodes based on given class attributes

So basically I want to filter out the HTML and preserve the hierarchy of the nodes. For example, I have this and I only want the HTML that has the class "b.1.1" in its hierarchy: <html> ...
0
votes
1answer
33 views

How can I get content of all scripts in HTML

I am making a Java program, which involves extraction of tags from a webpage.For parsing, i am using Jsoup, which is working fine.But there is some problem with number of tags in the downloaded ...
0
votes
0answers
55 views

How to parse JS and HTML using PHP

Till now from the Google, i got some html parser for parsing HTML page. but i am unable to choose one from them. Below is my objective- Parse the values dynamically from html page, which conatins ...
0
votes
2answers
40 views

How do I parse this HTML code with Nokogiri?

I have the following HTML: <h3><strong>Adresse:</strong></h3> <p> Hochschule Darmstadt<br> TechnologieTransferCentrum<br> D19, Raum 221, 222<br> ...
0
votes
0answers
33 views

Parsing Amazon URL to find book information

I am looking to parse amazon urls to find information about the author and the book. What is the best way to achieve this? Should I be using an html parser or is something better? Thanks
0
votes
1answer
36 views

Highlight nodes covered by XPath

I want to highlight nodes covered by a given XPath in an HTML page source. I looked to in HtmlUnit, could not find any thing in API. At present, I am thinking of doing it following way: Get XPath ...
0
votes
0answers
54 views

issue in parsing html in java

i want to parse an html and get the next tag value after a matched pattern. what i am doing Searching the pattern and find it. now i want the next value to be printed . My current code is: public ...
0
votes
1answer
47 views

Stepping through entities in Python 3.3 html.parser

I have the following Parser: class Parser(HTMLParser): def __init__(self): HTMLParser.__init__(self) self.tableCount = 0 def handle_starttag(self, tag, attrs): if tag == "table": ...
0
votes
1answer
54 views

How can I get this value using HtmlAgilityPack?

Not sure what that's called but it represents the user that created the forum thread: <a href="http://myforum.com/forum/most-fav-action-movies/" id="thread_title_10178" ...
1
vote
1answer
42 views

c# win8 HtmlAgilityPack trouble

Hello I want to parse HTML from a website for metro app. I saw some tutorials about HtmlAgilityPack and I decided that it is kinda easily. But when I started project, I saw that some methods or ...
0
votes
2answers
47 views

Clean html code with a Regex

I am parsing some transactions, for example 3 transactions look like this: <TR class=DefGVRow> <TD>29/04/2013</TD> <TD><A ...
0
votes
1answer
125 views

Strip html tags except <b> using regex c#

I wanted to strip all the html but preserve <b> tags using regex. Is there a better way to do instead of Replace <b> with a non html tag like $b$ Remove all html tags using ...
2
votes
1answer
58 views

Symfony DomCrawler: Find element with specific attribute value

I'm using the DomCrawler component: http://symfony.com/doc/current/components/dom_crawler.html I'd like to, using the CSS like syntax, get an element with a specific attribute value. Here's the ...
0
votes
2answers
73 views

Parse HTML table in php

I have a database table which consists the following format of data in one column. <table cellspacing="1" cellpadding="0" border="0" width="395"> <tbody> <tr> ...
0
votes
0answers
36 views

How to find all the links on a page using lxml and Python

I've written some basic code to find and print all the links on a page: import requests import lxml.html url = "http://example.com" r = requests.get(url) page = r.content dom = ...
1
vote
2answers
47 views

BeautifulSoup drops text when fixing up broken markup

I'm pretty new to Python, but what the heck... This is kind of a weird question so I will do my best to explain it as throughly as I can: I'm busy trying to write a script in Python that checks a ...
-5
votes
0answers
26 views

Interact with the tool “webBrowser” [closed]

I have a program written in C# and at the end I need to show site by tool webBrowser1 has been introduced already. But I need to fill the boxes "cells" table displayed in the page or the site open ...
1
vote
2answers
54 views

Jsoup, unable to retrieve object

I'm trying to use jsoup api, and my first try is to retrieve from google.it text of search button and show it inside a textview. i've used this code: protected String doInBackground(Void... params) { ...
0
votes
1answer
31 views

PHP ganon how to read javascript

I am scraping some html pages using php ganon dom parser but i am stuck where i need to read some javascript from the source my javascript is like. <script type="text/javascript"> ...
0
votes
1answer
62 views

PHP ganon dom parser get next element when match is found

I am parsing and html dom string from ganon dom parser and want to get the next element plain text when a match is found on previous element e.g my html is like <tr class="last even"> ...
1
vote
2answers
39 views

How to get something like “descendant-AND-self::” to htmlNode

I parse from this html table: <table align="center"> <tbody> <!-- riadok --> <tr> <td valign="middle" align="right"> <form ...
0
votes
2answers
53 views

How to get the count of tables in an html file with C# and html-agility-pack

This is a newbie question so please provide working code. How do I count the tables in an html file using C# and the html-agility-pack? (I will need to get values from specific tables in an html ...
0
votes
0answers
31 views

How to get url of the captcha from the source file

I have a piece of html code: <div style="margin-left:180px;"> <script type="text/javascript" ...
0
votes
1answer
48 views

Python splitting string index out of range

I am trying to split the following a tag: <h3><a href="#AC Adapter" onclick="getProductsBasedOnCategoryID('Asus','AC Adapter','ET1611PUT','6941', this, 'E Series')">AC Adapter ...
0
votes
2answers
67 views

HTML parsing / checking for certain value of certain attribute of certain tag [duplicate]

How can I, with JavaScript, check if a webpage has any of the following: <meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1, user-scalable=no" /> <meta ...
0
votes
1answer
29 views

Can I use HTML purifier to find encoding issues instead of just stripping them?

I have a (large) body of text that I'm working to try and convert from it's originally web-friendly format, to something 'slightly' more restrictive (epub -- and some readers are VERY picky about the ...
0
votes
0answers
23 views

jtidy fails to parse html - options

So I was trying to evaluate a couple of the HTML parsers and gave JTidy a try. Trying to parse this URL: http://htmlcleaner.sourceforge.net/doc/org/htmlcleaner/TagNode.html Gives these errors: ...
0
votes
0answers
32 views

Python + BSoup AttributeError 'NavigableString' object has no attribute 'has_attr'

So i am trying to parse data from an onclick attribute on ana tag. The data is held inside a div tag with id=accordion. There are two a tags inside this div container but i am only trying to access ...
0
votes
2answers
50 views

How do I parse this HTML using Nokogiri?

Based on this HTML: <li><strong><a href="http://www.ukasta.org.uk/">United Kingdom Agricultural Supply Trade Association</a> (UKASTA)</strong></li> I want to get ...
1
vote
2answers
56 views

Parsing HTML in Android

I have html code that looks like <td align="right"><select name="Hour"> <option >00</option> <option >01</option> <option >02</option> <option ...
-1
votes
4answers
81 views

Regular expression to match after first % and before last %

I need a regular expression that can match what is inside the "%" marks in the following string: 1) Bla bla bla %yada yada yada% bla bla. Even if the form is like this: 2) Bla bla bla %yada ...
0
votes
2answers
65 views

Parse HTML with HTMLParser in Python3

I've got a piece of code in Python 3 that successfully parses HTML with HTMLParser in Windows, the problem is that I want to run the script also in Linux and it doesn't seem to be working. I retrieve ...
-1
votes
1answer
81 views

Parsing HTML page into CSV - python

I am trying to transfer all the data i parsed from a website into a csv file but i have run into a couple of problems: 1.Even though i have added the character encoding, it still prints out as HTML ...
0
votes
0answers
36 views

Parsing and reading HTML content in a String as DOM

What is the best way to parse HTML content in a string? I need to read the content as DOM, what is the best toolkit to do it?
0
votes
1answer
44 views

Python 'get_text()' not working

I am trying to compile the following code from parsing html but i come up with an error: import string, urllib2, urlparse, csv, sys from urllib import quote from urlparse import urljoin from bs4 ...

1 2 3 4 5 49