0
votes
0answers
30 views

C#.Net 2008 -> C++ translation

so I have found the following program and I am trying to accomplish the same result in C++. Please note this is NOT written by me, simply trying to understand it and rewrite in C++. What it does: It ...
0
votes
1answer
34 views

ios - How to parse HTML file?

I'm getting HTML content in below format. wsse:BinarySecurityToken wsu:Id="uuid:07747f2a-4be4-48fa-9654-5e12235f6040" ...
0
votes
4answers
112 views

ios - How to parse HTML content in ios?

How do I parse HTML file? I'm getting an HTML file in the below code,I just want to get data in between BinarySecurityToken XML node. - (void)connectionDidFinishLoading:(NSURLConnection ...
-1
votes
1answer
42 views

ios - How to decode XML document? [duplicate]

I'm new to iPhone development,I'm trying to get access token from Google,When I logged in,I'm getting HTML content,in that HTML content I want to get token that is contained in BinarySecurityToken ...
0
votes
1answer
64 views

Using HTMLUnit to get javascript elements

I'm trying to use HTMLUnit to get the javascript elements on a webpage (https://www.coursera.org/courses), and it is only loading the html data. How do I get it to display the information shown in the ...
0
votes
1answer
98 views

Parse HTML page in Java

I'm parsing this page segment: <tr valign="middle"> <td class="inner"><span style=""><span class="" title=""></span> 2 <span class="icon ok" ...
2
votes
1answer
178 views

Programmatically extracting tables from html files with c/c++

I'm looking for better ideas for extracting tables from html files. Right now I'm using tidy ( http://tidy.sourceforge.net/ ) to convert a html file into xhtml and then I use rapidxml to parse the ...
0
votes
1answer
40 views

show the different html links details in another single page dynamically

i have 7 links in one html page and when i clicking any links leads to another page with link heading(eg: link heading) of that link. My question is ,for this instead of creating 7 other pages for 7 ...
1
vote
1answer
38 views

Handling multiple encodings in a single file

I'm encountering some weird encoding issues. I need to parse an HTML document from the web, and I'm using the 'Content-Type' charset meta-data to determine the encoding type. One page has been giving ...
0
votes
1answer
122 views

HTML/XML parser that executes bash functions and passes text as argument [closed]

I need a program (bash, perl, ruby,it doesn't really matter) that parses html/xml and executes functions for tags and passes text between the tags as an argument. Example: Script: #!/bin/???? . ...
0
votes
1answer
443 views

Parse section from HTML page using TFHpple/hpple (IOS)

I am loading an entire HTML page and want to get all content between specific tags. For this I'm doing: articleXpathQueryString = @"//article/div[@class='entry breadtext']"; articleNodes = ...
1
vote
1answer
85 views

Making a search query in Windows phone and populating the result in listbox

I'm new to Windows Phone programming, I was trying to make a search query for e.g. http://www.flipkart.com/search/a/computers?query=ipad+3 I'm doing this with the help of webclient using ...
-2
votes
3answers
148 views

how to replace string/ word in parsing html with php? [closed]

i have table like <html> <body> <table id="data" class="outer"> <tr><td>Date</td><td>12-09-12</td></tr> ...
0
votes
2answers
168 views

HTML or XML Parser Using JSP

I am developing JSP Search Engine i want to parse html page using it's Link and search for some Words in it Thanks
0
votes
1answer
130 views

TBXML textForElement issue

I'm trying to parser an HTML with the TBXML library for iOS and I want to obtain the "more text" value for this piece of HTML: <div> <a href="/url/1"> ...
0
votes
0answers
40 views

java code for parsing special character(&) in hyperlink

I'm using "&amp;" in my java code,server traces also showing & but when i see in the front end(HTML page)i'm seeing it as &amp; please guide me to resolve this
0
votes
2answers
99 views

Does XML have standard parsing algorithm like HTML5?

As I know, HTML5 has standard parsing algorithm: http://www.whatwg.org/specs/web-apps/current-work/multipage/parsing.html#parsing But I didn't find a corresponding one for XML. Does it have ? I ...
1
vote
2answers
251 views

Parsing HTML using JavaScript

I'm working a page that needs to fetch info from some other pages and then display parts of that information/data on the current page. I have the HTML source code that I need to parse in a string. ...
0
votes
1answer
435 views

beautifulsoup findAll find_all

I would like to parse a html file with Python, and the module I used is beautifulsoup. After I used it, something strange happened.It is said that the function "find_all" is same as "findAll", but ...
0
votes
1answer
68 views

Parsing Data from a Website in Objective-c

Can you create an XML for a website that you do not own? This is the first question came to my mind when I was thinking to do the following demo app: Let's say there is a Main Page contains 5 Best ...
3
votes
1answer
731 views

Parse HTML in Scala

Task: HTML - Parser in Scala. Im pretty new to scala. So far: I have written a little Parser in Scala to parse a random html document. import scala.xml.Elem import scala.xml.Node import ...
1
vote
2answers
219 views

XmlReader: Trouble parsing attribute without quotes

A piece of HTML that I'm trying to parse contains some attributes values without quotation marks, for example with width and height attributes: <img src="/static/logo.png" width=75 height=90 /> ...
3
votes
4answers
2k views

Parsing HTML Python

I'm looking for an HTML Parser module for python that can help me get the tags in the form of Python lists/dictionaries/objects If I have a document of the form: <html> ...
0
votes
1answer
460 views

Convert html string to xml and populate datagrid using xml file

Using htmlagilitypack i'm extracting the html content from a web page and storing it in a string. I have even removed all the tags in the output. Now i want to populate the data grid with the values ...
0
votes
2answers
83 views

What is wrong with whitespaces in ANTLR?

I have really simple XML (HTML) parsing ANTLR grammar: wiki: ggg+; ggg: tag | text; tag: '<' tx=TEXT { System.out.println($tx.getText()); } '>'; text: tx=TEXT { ...
1
vote
0answers
126 views

Xpath not working as expected in PHP [closed]

Here is an example page which I'm trying to parse and get the phone number, http://www.boats24.com/de/angebote/details_anfrage_telefon.php3?nr=161765 <?php $url = ...
0
votes
2answers
193 views

TypeError: Cannot read property “tbody” from undefined

I am trying to parse the html in google apps script, the xPath of the element in HTML is : ...
0
votes
2answers
387 views

ASP.NET - Parse / Query HTML Before Transmission and Insert CSS Class References

As a web developer I feel too much of my time is spent on CSS. I am trying to come up with a solution where I can write re-usable CSS i.e. classes and reference these classes in the HTML without ...
0
votes
1answer
132 views

Error using XML package in R

I am gathering data about different universities and I have a question about the follow error after executing the following code. The problem is when using htmlParse() Code: url1 <- ...
1
vote
1answer
137 views

R XML package weird bug while parsing xml and html files

I am using R's XML package to extract all possible data over a wide variety of html and xml files. These files are basically documentation or build properties or readme file. <?xml version='1.0' ...
0
votes
3answers
847 views

How to parse the xml data into html?

Here is my xml: <Catalog> <catalogDetail catalogId="DemoCatalog"> <catalogName>Demo Catalog</catalogName> </catalogDetail> <catalogDetail ...
0
votes
2answers
169 views

html or xml parser as an external library (dll)

I need to have an external HTML or XML parser to be able to add such functionalities in a software I'm developing using an uncommon programming language. It doesn't matter how advanced the parser is, ...
0
votes
1answer
111 views

Using PHP's DOM implementation to return the first 'n' characters of an HTML string

Given an HTML string, I would like to return a modified string with the following properties: The first n characters of the text contents (HTML tags aside) should remain. Elements after n characters ...
2
votes
2answers
118 views

How do i handle heavy page loads with php [closed]

I have a script that generates xml of products on users webstores. Now, this xml needs to be read from the browser into mysql database using php. The issue is that, sometimes the size of the xml is ...
0
votes
3answers
691 views

How to parse xml with HTML tags in between android

Hi friends i got a xml file with lot of content and i am able to parse the content with pull parsing but the problem is there are html links in between the tags and while parsing i only get the text ...
-1
votes
1answer
219 views

PHP : Lookup all CSS files for content

My requirement is to lookup all the CSS content (external, internal and inline) from a given URL for some specific CSS content. I am currently using the 'PHP Simple HTML DOM Parser' to lookup HTML. ...
0
votes
1answer
421 views

Parse HTML/XML and find locations of elements in original document

Is there a way to get the original location of an element in a document, ie. the start and end character index, when parsing html/xml in Python? I've looked through the lxml documentation and ...
1
vote
1answer
123 views

I wanted to show an XML tag <Cat_Desc> in a web View but it is having HTML tags also

I have to parse data from xml.this is my xml- or its url is: http://mobileecommerce.site247365.com/admin/catdata.xml <Cat_Name>News for the day</Cat_Name> <Cat_Desc> ...
0
votes
1answer
488 views

What's the best parser to get a docbook from word, rtf, ecc

I need to know what's the best solution for my problem. I want to make a Docbook editor that receive a word file (or any other rich text formats) and allows you to modify the content/style to build ...
1
vote
1answer
242 views

Parse HTML without xpath

I'm trying to create a simple tool to parse html files. Specifically, I need it to get all the name attributes out of all the div tags. My HTML string varies and I don't have any control over it, so ...
0
votes
2answers
96 views

fetching webpage through java

I need to fetch a given web page, and then convert the HTML tag to XML tag, and from these XML tag i need to build a tree. how can i do that ?? please show me some good link or tutorial based on ...
8
votes
1answer
2k views

xpath find node that does not contain child

I'm trying to create some xpath that will find all a tags that do not contain img tags, so that something such as <a href="http://aol.com">link</a> matches, but <a ...
0
votes
1answer
144 views

How do I script html that is not well formed to be well formed using classic asp and vbscript?

I am trying to parse some html to switch out values of various element attributes. I decided that the most reliable way to parse the html was to use an xml parser (msxml.) The problem is that the ...
1
vote
2answers
370 views

Converting pyparsing.ParseResults back to html string

I'm brand new to pyparsing. How can I convert instance of class pyparsing.ParseResults back to a html string. ex. >>> type(gcdata) <type 'unicode'> >>> pat {<"div"> ...
0
votes
2answers
1k views

Parsing XML with nodes containing HTML in Qt

I try to parse an XML file with some nodes containing HTML in Qt, it looks like this: <root> <list> <element>Some <i>text<i></element> ...
12
votes
1answer
3k views

Noob question about DOMDocument in php

Hi I'm just starting reading documentation adn examples about DOM, for crawling and parsing, I'm used to do this with get_content, but it's time to change =D for a new project. I have a div, like ...
0
votes
2answers
693 views

ignore malformed XML with Perl-XML

I'm using the perl command line utility xpath to extract data from some HTML code as follows: #!/bin/bash echo $HTML | xpath -q -e "//h2[1]" The HTML is malformed which causes xpath to throw the ...
1
vote
2answers
5k views

Parsing tables, cells with Html agility in C#

I need to parse Html code. More specifically, parse each cell of every rows in all tables. Each row represent a single object and each cell represent different properties. I want to parse these to ...
0
votes
0answers
211 views

Java HTML parser/validator

We allow people to enter HTML code on our wiki-like site. But only a limited subset of HTML to not affect our styling and not allow malicious javascript code. Is there a good Java library on the ...
1
vote
2answers
320 views

Replace text not contained in a tag using either Regex or XmlParser

I know that using Regular expressions to parse or manipulate HTML/XML is a bad idea and I usually would never do it. But considering it because of lack of alternatives. I need to replace text inside ...

1 2