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
14 views

using simple xml to read parts of an html page returns warning's / notice of non-object, and need to fix this

Okay so I've been working on this little script which is bascially scrapping a page from ted.com everything works as i want it to (meaning I can print out all values that I am interested in), The ...
4
votes
2answers
4k views

Example for parsing (X)Html with libxml2 in iOS

Recently I started to play around with the libxml2 lib within an iOS iPhone project. I read some useful links, like: http://laurentparenteau.com/blog/2009/12/parsing-xhtml-in-c-a-libxml2-tutorial/ ...
0
votes
3answers
36 views

PHP Simple HTML DOM Parser, find text inside tags that have no class nor id

I have a http://www.statistics.com/index.php?page=glossary&term_id=703 Specifically in these part: <b>Additive Error:</b> <p> Additive error is the error that is added to the ...
1
vote
4answers
56 views

Extract Text from within tags using RegExp PHP

I am trying to extract some strings from the source code of a web page which looks like this : <p class="someclass"> String1<br /> String2<br /> String3<br /> </p> I'm ...
0
votes
1answer
41 views

Simple HTML Parser

<strong class="tb-rmb-num"><em class="tb-rmb">¥</em>39.00</strong> I'm trying to retrieve the number only without the currency sign My current code is $ret = ...
0
votes
1answer
23 views

HTML parsing issue in iOS

I'm trying to arrange data from this website: ...
0
votes
0answers
66 views

Using TWebBrowser for parsing HTML data

I got an app that uses TWebBrowser component, and i have link to one site, that opens it using TWebBrowser using "for" statement, by example like this: adoquery.sql.text = "select top 10 id from ...
0
votes
3answers
36 views

How to parse HTML full page in android

I am calling a HTML page via a web servise . I need to get hole source code of HTML page. My problem is that, when I convert the http response to string I am getting only some part of HTML page. How ...
0
votes
1answer
43 views

match numbers in multiple lines

I have an HTML text like this <tr> <td><strong>Turnover</strong></td> <td width="20%" class="currency">&pound;348,191</td> ...
0
votes
4answers
3k views

RegEx to get href and src from HTML content?

I am trying to extract href and src links from an HTML string. According to this post, I was able to get the image portion. Can anyone help adjust the regular expression to include the href URL in the ...
0
votes
4answers
38 views

Using regexes to find result from HTML table

I am stuck with some regular expression problem. I have a huge file in html and i need to extract some text (Model No.) from the file. <table>...... <td colspan="2" align="center" ...
-1
votes
2answers
47 views

php foreach is very slow [closed]

i have this code which does the work exactly the way i want, it will tell me the all images available in any webpage but i takes more than one minute and the load on server also increases because of ...
0
votes
0answers
13 views

How to load image in webview from a blog one by one

I have an android app in which ,i have a webview on the top ,and previous,next buttons in below, of the layout.I am aware of how to load an url in webview.I have a blog(blogspot) which contains ...
0
votes
0answers
21 views

Whats the best practise for HTML tags in Forms?

I do not want to allow HTML Tags in any input fields on my ASP.NET MVC4 page. By default there comes a System.Web.HttpRequestValidationException. The simplest way seems to show an error on the ...
0
votes
3answers
34 views

PHP Regular expression: Get all urls with question mark

I have this regular expression: preg_match_all("/<a\s.*?href\s*=\s*['|\"](.*?)(?=#|\"|')/si", $data, $matches); to find all urls, it works fine, BUT how can I modificate it to find urls with ...
0
votes
0answers
11 views

c# HtmlAgilityPack HTML parsing issue

I have this html <div class="postrow firs"> <h2 class="title icon"> This is the title </h2> <div class="content"> <div ...
605
votes
29answers
84k views

Parsing and processing HTML/XML?

How can one parse HTML/XML and extract information from it? What libraries exist for that purpose? What are their strengths and drawbacks? This is a General Reference question for the php tag
0
votes
2answers
2k views

Using Jsoup to extract data

I am using jsoup to extract data from a table in a website.http://www.moneycontrol.com/stocks/marketstats/gainerloser.php?optex=BSE&opttopic=topgainers&index=-1 using Jsoup. I have referred to ...
0
votes
1answer
30 views

How to Keep HTML Formatting Intact When Parsing with DOM - (No Tag Stripping)

Employing DOMDocument, I'm trying to read a portion of an HTML file and displaying it on a different HTML page using the code below. The DIV portion that I'm trying to access has several <p> ...
0
votes
0answers
25 views

Changing input values after row has been removed

I'm trying to create a tool where the user clicks on a button and it adds a label,input and remove button. I have it all working for the most part but there is only couple things missing. If the ...
0
votes
3answers
36 views

How to change/delete string using php called page?

I'm using the current function : function callframe(){ $ch = curl_init("file.html"); curl_setopt($ch, CURLOPT_HEADER, 0); echo curl_exec($ch); curl_close($ch); } Then i call ...
0
votes
0answers
32 views

html form to iframe external booking system

I've got a simple booking form and want to transfer the data into a different 'booking' page in an iframe as we use an external booking system - but I'm having some trouble working this out. I have ...
0
votes
1answer
22 views

Questions about HTML parsing

This is a program we've written for html parsing. It works perfectly. We found a demo program on the net, and we modified it for our needs. But we don't understand how it works. import urllib from ...
0
votes
2answers
299 views

JUnit testing for HTML parsing

I'm trying to set up unit tests on a web crawler and am rather confused as to how I would test them. (I've only done unit testing once and it was on a calculator program.) Here are two example ...
0
votes
2answers
44 views

find word but not in a link

I need a reg expression which will find the target word or words in html (so in amongst tags) but NOT in an anchor or script tag. I have experimented for ages and came up with this ...
0
votes
0answers
38 views

script tag doesn't follow tree structure jquery parseHTML

I'm parsing some HTML through jquery's parseHTML() function: <code> <b>test</b><script>lol</script> </code> Problem is, that when it comes to <script> ...
-2
votes
1answer
28 views

From html to xml java api [closed]

I want do use some of my own converter from html table to xls table, but I don't know where to start. The google don't show me comprehensive results. I know about Apache tika and poi, but do they have ...
0
votes
1answer
129 views

Access documents on secure web server

I'm trying to build an iPad app to download and display documents (pdf, ppt, doc, etc.) from a web server. Currently it does this by parsing the HTML structure (using hpple) on the server. For ...
0
votes
1answer
34 views

PHP Simple HTML DOM If Website is Down

I'm parsing some news from one of the Turkish Health Ministry's websites. But for instance if website is down now or can't be loaded, my website doesn't load the content after the part that i parse ...
0
votes
0answers
29 views

Web scraping without manual entry? [closed]

I've searched and searched but can't seem to find anything on this so I'm hoping I can get some insight on this. I work a 9 to 5 job where I have to do TONS of research about specific things. For ...
1
vote
1answer
47 views

How to navigate websites using Jsoup in java

How can i navigate (like web crawling) in Jsoup to a different link? For this example I have done the basics to get the title, get links and get texts. But I want to be able to use one of those child ...
0
votes
1answer
30 views

Parsing HTML with DOM

I am trying to parse HTML for example <html> <head> </head> <body> <a href='example.com'>Hello, <span>World</span></a> <ul> ...
0
votes
1answer
27 views

file_get_html() returns garbage

I am using a simple_html_dom parser. The following code is returning garbage output: $opts = array( 'http'=>array( 'method'=>"GET", 'header'=> ...
0
votes
1answer
52 views

HTML Parsing and removing anchor tags while preserving inner html using Jsoup

I have to parse some html and remove the anchor tags , but I need to preserve the innerHTML of anchor tags For example, if my html text is: String html = "<div> <p> some text <a ...
17
votes
9answers
9k views

What is parsing?

Parsing is something I came accross alot in development, but as a junior its one of those things I assume I will get the hang of at some point, when its needed. In my current project I've been told to ...
0
votes
2answers
190 views

php simple html dom parser doesn't return anything

Why won't my script return the div with the id of "pp-featured"? <?php # create and load the HTML include('lib/simple_html_dom.php'); $html = new simple_html_dom(); ...
0
votes
0answers
41 views

Parsing links using ColdFusion

I have a utility that lets users store custom fields (first name, favorite color, address, URL, etc). One of those fields is used to store the contact's work/personal URL. In addition, users can send ...
0
votes
1answer
28 views

Getting specific information from a website C# windows store app

I am trying to get specific information from a website. Right Now I have this html string as you can see my code, the html source code of the website is placed in "responseText". I know I can do this ...
0
votes
3answers
75 views

Using regex to find keyword in http response

I asked a similar question earlier for which Nokogiri was recommended as a solution. I've used Nokogiri and it certainly works fine. But due to certain reasons, I must use regex to extract a keyword ...
0
votes
1answer
25 views

javascript changing tag attributes not being executed in the right order?

I have an html file that consists of a table with fields inside. Some fields are marked by xxx, which should be converted to textareas. That has been successfully done as: function raplace() { ...
3
votes
1answer
32 views

Find All text within 1 level in HTML using Beautiful Soup - Python

I need to use beautiful soup to accomplish the following Example HTML <div id = "div1"> Text1 <div id="div2> Text2 <div id="div3"> Text3 </div> </div> ...
3
votes
3answers
92 views

How to count rows in a table in an html file C#

When there is a compound table inside an html file how can one count the rows of the parent table. What I mean by a compound table; a table in which other tables are contained within some of its ...
0
votes
1answer
27 views

Need some help getting an html parsing project off the ground

I came here for help, because I'm starting a project and I don't even know what questions to ask. What it boils down to is that I have a bunch of html files that I need to parse for various pieces of ...
-5
votes
2answers
56 views

Multiline Regular Expression (Regex) with C# [closed]

I've been trying to do this for some time, this is a part of text, and I want to get some values from it, to be exact: <td align="Left"> <a href="randomUrl">Something</a> //Need ...
-1
votes
2answers
41 views

Understanding HTML code for a specific web page [closed]

I am trying to see the code the following URL - http://www.chilis.com/EN/Pages/menuitem.aspx I am seeing some weird things on the page that I cannot understand. I was hoping some one could explain it ...
0
votes
0answers
28 views

How to parse img tag and ul tag in java using htmlparser?

I want to parse following with htmlparser.I wrote code for title and its working fine.i tried for following tag but nothing is working.please help i am doing this kind of programmming for the first ...
1
vote
0answers
19 views

How to use Perl HTML::TableExtract with rowspans and also spans within cells

I apologize for the length here, but I thought it made sense to include my small amount of progress in addition to a description of my problem! I want to extract data from some html pages that have ...
1
vote
1answer
39 views

PHP: Regular expression / preg_match() until EOL

In an HTML page is a line like this: <p><strong>State:</strong> <a href="/state/show/Ohio">Ohio</a></p> What I'm looking for is a regex which gets the content ...
3
votes
1answer
29 views

What regular expression to use in preg_match() for this?

I'm not really familiar with regular expressions, and I would really need your help with this. I'm parsing a source code of a site, and the information I'm interested (lets call it XXXX) is ...
2
votes
1answer
33 views

how to add target blank to anchor tag to open in new window using preg_match or preg_replace

How to add target blank to anchor tag to open in new window using preg_match or preg_replace? $contentss = ...

1 2 3 4 5 51