Tagged Questions
0
votes
3answers
673 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 ...
0
votes
2answers
159 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
2answers
163 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, ...
2
votes
1answer
176 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 ...
1
vote
1answer
84 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 ...
0
votes
1answer
56 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
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 ...
0
votes
1answer
404 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 = ...
0
votes
1answer
65 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 ...
0
votes
1answer
458 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
1answer
182 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
0answers
40 views
java code for parsing special character(&) in hyperlink
I'm using "&" in my java code,server traces also showing & but when i see in the front end(HTML page)i'm seeing it as &
please guide me to resolve this
0
votes
0answers
210 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 ...