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
0answers
31 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
33 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
53 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
45 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
53 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
37 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
45 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
108 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
41 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
65 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
32 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
45 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
25 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
50 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
30 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
51 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
34 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
46 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
29 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
47 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
66 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
27 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
20 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
31 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
47 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
50 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
79 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
61 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
77 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
34 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
42 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 ...
0
votes
1answer
19 views

Extract data between two specific text using Jericho

I am using Jericho to parse Html. I have a html page in which I need to extract data between two specific text . <table width="100%" align="left"> <tr><td> ...
0
votes
0answers
44 views

How to parse HTM into NSString objects that contain segments of HTML code rather than its content

I have a htm file (exported from Excel using UTF-8 encoding) containing a table of Japanese characters and phonetic symbols. Get a sample file here. I've added the htm file into my Xcode project and ...
0
votes
0answers
10 views

How to display only the second block?

<div class="news">...</div> <div class="news">...</div> ← how to display only him? <div class="news">...</div> How to find the second the second unit, if the ...
2
votes
2answers
113 views

How to get img tag value inside a specific div and specific anchor tag using regular expression

I am new to regular expression i tried a lot for getting image tag value inside a anchor tag html this is my html expresstion <div class="smallSku" id="ctl00_ContentPlaceHolder1_smallImages"> ...
0
votes
2answers
75 views

Exploring an attribute in Python

I am parsing html from the following website: http://www.asusparts.eu/partfinder/Asus/All In One/E Series I was just wondering if there was any way i could explore a parsed attribute in python? For ...
0
votes
2answers
61 views

Parsing a HTML with Hpple

I'm using Hpple to pass a HTML file. The HTML file is very similar to the following. <div class="entry"> <p>some text here <a>Inside a</a> another ...
0
votes
1answer
110 views

Delphi-search and retrieval value in text

Im downloading page to memo1.text and in this text i need to extract some value's to variables. necessary part of downloaded code: <tr> <td style="text-align: left;">Nazwa1</td> ...
1
vote
2answers
27 views

How to query and extract specific markup from an html string using C# in server side?

i have html string reside in files in the server and for each user request i have to select some markup with ID from mentioned files and send them to the client.i wonder, is there any library for .NET ...
1
vote
4answers
48 views

How to differentiate two HTML elements with same tagname and same text

I would like to know is there any method in Jsoup that tells me an element with same tag name, text and class (if any) is different from other element with same tag name, text and same class (if any). ...
0
votes
3answers
47 views

XPATH exclude more than one element/tag

I am having issues trying to extract text between two div tags in an XML. Imagine I have the following XML: <div class="default_style_wrap" > <!-- Body starts --> <!-- ...
0
votes
1answer
56 views

Android, Proper HTMLCleaner Usage

I know we should basically try to do our own stuff here, and this is not a place to make requests but I really hate having to read stuff from Html, I truly don't understand it's ways. So, I will be ...
0
votes
1answer
66 views

Parse content from select menu, Python+BeautifulSoup

I am trying to parse data from a page using python which can be pretty straightforward but all the data is hidden under jquery elements and such which makes it harder to grab the data. Please forgive ...
-1
votes
0answers
68 views

Google Scholar search 'service unavailable' [closed]

I am using Google Scholar to get additional information about papers of interest. I have been fetching html's from google scholar using urllib2 (python package) and passing in the article title as the ...
0
votes
0answers
83 views

PHP Simple HTML DOM Parser link and title

<div class="info"> <a class="firmTitle" href="http://rekvizitai.vz.lt/imone/javema/" title="Javema, UAB (61700)">Javema</a></div> I have 5 div likes this I want get from each ...
0
votes
2answers
79 views

PHP regex to check if image is wrapped with a tag

I am creating a wordpress function and need to determine whether an image in the content is wrapped with an a tag that contains a link to a PDF or DOC file e.g. <a ...
0
votes
0answers
45 views

How to get the path of the image url in cocoa webview

I did a webview cocoa application. In that webview I want to get a particular url, i.e an image url. But I am not able to get the image url. My code is : - (BOOL)webView:(WebView *)webView ...
0
votes
1answer
75 views

php preg_match for <a href> [closed]

First of all I am new to PHP. Normally I can do preg_match tag for a <div class="T-time">(.*)</div> and read the content but I could not do the same thing for: <div class="T-date"> ...
1
vote
0answers
67 views

How to parse hindi font from html using BeautifulSoup?

I want to get the contents of a tag using using BeautifulSoup. My code : html= "<html><body><td class="HindiTextGray" align="left" valign="top"> <br /> सूरत। ...
-1
votes
1answer
36 views

Remove specific a tags from html [duplicate]

i m parsing various html pages on my website. there are some specific 'a' tags i wish to remove. all a tags look like this: <a href="#cite-note-2"><span>..</span></a> <a ...

1 2 3 4 5 49