Tagged Questions
-1
votes
2answers
46 views
Generic XML parser design analysis [closed]
We need to create a generic xml parser and rule engine which reads xmls files and store the data in appropriate tables.
Use Case:
Suppose we have Afile1.xml coming from A
<x>
...
0
votes
1answer
53 views
PHP: parse structured txt file [closed]
I have a text file that has a structure to it. I would like to use PHP take some of the values from keys in the structure and add them to an array. The value that i would like is OBJECT. Any advice on ...
0
votes
1answer
56 views
Python: Parsing HTML elements based on absolute XPath
I'm working on a project where I have to parse 20 different HTML pages based on URLs and I would like to get some information from all of them. Pages have different structure and the required ...
0
votes
2answers
70 views
Parsing failing with LXML Xpath using utf-16
I am parsing the following page: http://www.amazon.de/product-reviews/B004K1K172
Using lxml based etree for parsing.
Content variable containing the entire page content
Code:
myparser = ...
0
votes
1answer
78 views
Html Agility Pack xPath issue
I am developping a .Net console application.
I want to request an HTML page and then pick up some data inside.
I use the Html Agility Pack to build an object model from the response HTML page and to ...
2
votes
1answer
67 views
How to extract mixed content in PHP DOMXpath?
I have following HTML which I am parsing:
<ul class="man">
<li>
height
<span>3.3"</span>
</li>
<li>
weight
...
0
votes
0answers
66 views
Convert between XPath and string indexes in Python
I've got a webpage represented as an XHTML string, and I've got a list of annotations on that webpage. The anchor location for each annotation is defined by an XPath expression plus a string index, ...
0
votes
2answers
37 views
How to refactor this xslt that has //?
I am refactoring an xslt for word xml to improve performance as recommended here. I am relatively new to xslt. Why are the following statements not equivalent?
Form1
<xsl:value-of ...
-1
votes
1answer
86 views
Best java library for creating, parsing and querying XML [closed]
I am creating a system which will store c++ code in an xml file so i need to be able to create the xml file from either a string or array of strings and then need to parse and query it at a later ...
0
votes
1answer
80 views
Parsing Complex XML Document using PHP xPath
I have an XML Structure, like I have outline below. I am trying to use xPath to find particular elements within the structure, but have been unsuccessful. This is what I have thus far:
...
0
votes
1answer
69 views
Using Xpath in Smarty to Parse RSS Feed
I have a PHP script that works quite well to parse an rss feed and build a web page with the information formatted just like I need. The simplified PHP script looks like this:
<?php
$xml = ...
0
votes
2answers
134 views
PHP : how to parse XML with nested xpath elements
Here is the XML that I am working on :
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" ...
1
vote
1answer
155 views
Parsing xml that has different namespaces using XPath in JAVA
I'm doing this small project and my task was to read a xml file and parse it so that it can be stored in a class.
Here's the xml example. it's written in SOAP and what I want to do is get
...
0
votes
1answer
82 views
XPath Nested Nodes
I need to loop and get the updates that belong to each lot, but when I use the 'xmldoc.xpath("//update") it just gives me all of the updates even if not nested into the lot. How can I get the updates ...
0
votes
3answers
445 views
Parsing for data in HTML using XPath (in a shell script)
I am trying to parse a fairly simple web page for information in a shell script. The web page I'm working with now is generated here. For example, I would like to pull the information on the internet ...
0
votes
0answers
19 views
HTML Cleaner Xpath Parse Static Int [duplicate]
Possible Duplicate:
Android HTML Cleaner Xpath variable use in AChartEngine
I am attempting to use HTML cleaner and Xpath to parse a variable from a website in android however, it does not ...
1
vote
1answer
156 views
Can I parse xpath using python, selenium and lxml?
So I have been trying to figure our how to use BeautifulSoup and did a quick search and found lxml can parse the xpath of an html page. I would LOVE if I could do that but the tutorial isnt that ...
0
votes
1answer
70 views
Need help: xpath query
i want to exclude the IMG Values in this table:
<table class="info">
<tbody>
<tr><th class="round-top" colspan="2">Status</th></tr>
<tr class="even">
...
2
votes
1answer
123 views
Scrapy crawl Multiple XPathSelector on same page
Im trying to extract data from different 'tables' inside a 'Main Table' on the same page (Same URL). The items fields have the same XPath / same structure in all sub-tables, so the problem I am facing ...
1
vote
2answers
140 views
Android - Parsing XML with XPath
First of all, thanks to all the people who's going to spend a little time on this question.
Second, sorry for my english (not my first language! :D).
Well, here is my problem.
I'm learning Android ...
1
vote
2answers
152 views
find class name of html source using php
I am new to PHP. I want to write code to find the id specified in the html code below, which is 1123. Can any one give me some idea?
<span class="miniprofile-container ...
0
votes
1answer
96 views
Getting date and time using HtmlAgilityPack from my website for unity
I'm trying to grab the date and time from my website http://www.thisisnotaballgame.com/time using the code here. The issue is I'm getting the line before it becomes a date and time and it's an iframe. ...
1
vote
1answer
155 views
Can XPath be used to Parse Static HTML/JSP pages
I'm in need of parsing the static JSP/HTML pages to identify the tags and labels in batch mode.
A program will run and read the view files in the given WAR or folder and parse it. Since it is not at ...
1
vote
0answers
527 views
Getting an error: The remote server returned an error: (401) Unauthorized. from WebClient class
item = 535;
String URI = "http://localhost:3033/WebFormDesigner.aspx?fm_id=" + item.ToString();
//String URI = "http://www.google.com";
WebClient wc = new WebClient();
Stream s = wc.OpenRead(URI);
...
2
votes
3answers
60 views
Finding a specific value in a non-sorted xml file
Using java, I'm trying to find the most recent highest entry number. This entry needs to specify a specific type. From there it needs to pull the value.
Here's what the xml looks like
...
0
votes
2answers
97 views
Retrieve URL from XML
I have the following XML -
<title type="text/html">First part of string</title>
<content type="text/html"><p>And Second part of string</p> </content>
<link ...
1
vote
1answer
152 views
Load HtmlDocument from html with specific symbols (<, >)
I'm creating HtmlDocument and using LoadHtml(string). My input html string sometimes contains symbols < and > in it. So html parses incorrectly, for example:
My html is
<p>Value < 20 ...
0
votes
1answer
96 views
Parse using xPath PHP - a .td value from a table [closed]
I was wondering if someone could help. I'm trying to count the number of .td values from a table from another website. Could somoene help me out with this? If I do something like this....
echo ...
0
votes
0answers
87 views
How to parse multiple root “n” nodes in xml and extract root text value in python
I am trying to use lxml and xpath to extracting xml package that stored in a database. Each record has same xml structure except "C" some C has 3 values-nodes , something has more ..
Steve has 3 ...
0
votes
1answer
174 views
Proper way to change HtmlNode value in document using HtmlAgilityPack
I want to change node's inner html in the document but the following code doesn't work unfortunately:
HtmlNodeCollection sourceTables = _sourceDoc.DocumentNode.SelectNodes("//table");
...
0
votes
2answers
503 views
Groovy syntax to parse data from XML
I need to get the value 3 from the below xml file using groovy script.
I am testing from SOAPUI
<ParamId>3</ParamId>
Can anyone please share me the syntax to get the value?
I tried the ...
1
vote
1answer
329 views
Parsing XML file crashing when more of 1 expression to evaluate
I want to create a class to parse XML.
Here is my code :
public class ParserXML {
private String Flux;
private ArrayList<String> EvaluateExpr = new ArrayList<String>();
private ...
0
votes
1answer
259 views
parse xml with xpath shell
First, I am VERY new to shell, Java, Python, Perl, and any other Linux based scripting language. I am in need of doing something that I would think seems relatively simple, but can't get it to work. ...
0
votes
1answer
170 views
Xpath removing spaces in between text
I am using following XPath to pick some data from an html page. The value I am trying to pick has some spaces in between:
example=value1 value2 value3
My XPath expression is picking the ...
0
votes
4answers
374 views
Java XPath umlaut/vowel parsing
I want to parse the following xml structure:
<?xml version="1.0" encoding="utf-8"?>
<documents>
<document>
<element name="title">
...
0
votes
1answer
108 views
XPATH encoded HTML in tag
`
<item>
<title>Lorem ipsum dolor sit ame</title>
` `
<description>
&#13;
&#13;
&#13;<div ...
0
votes
2answers
60 views
find if background image is used for any html tag with inline style
How do I find all the tags which have a background image ?
No stylesheets used. All styling is inline in the tags.
I'm using lxml and xpath, currently. This is how far I could get:
from lxml import ...
0
votes
1answer
183 views
Getting a specific value from an XML file using XPath
So I have an XML file here, and I want to get a value from it using XPath. The file in question is an XML file in a zip that you can download here:
I believe that it's valid XML.
My current goal is ...
1
vote
1answer
185 views
XPath getting attributes of divs
I'm trying to learn xpath by writing a simple program that will list the fixtures of Premier League in footbal from the following page:
http://www.livefootball.com/football/england/premier-league/
...
2
votes
1answer
282 views
Xpath returning null with html agility pack
I am using Html Agility Pack to get the info about each product on the page:
http://www.hobbyking.com/hobbyking/store/_57_191__Planes_ARF_RTF_KIT-All_Models.html
My code is this but the node is ...
0
votes
2answers
436 views
QT HTML Parser (+XQuery)
I'm looking for a QT HTML parser tool.
I have some html source code and I'd like to use XQuery on it.
I already tried using QWebPage + QWebElement, but I don't like this solution cause firstly it ...
0
votes
1answer
138 views
PHP XPath Table elements disapearing
I have just learned about XPath and I am wanting to read data from only certain columns in a table.
My current code looks like this:
<?php
$file_contents = file_get_contents('test.html');
...
1
vote
3answers
105 views
XPath Query won't work without “text()” ending
So i'm trying to learn some xml parsing here, and I'm getting the hang of it, but for whatever reason, I seem to have to tack on "text()" at the end of each query, otherwise I get null values returned ...
1
vote
2answers
63 views
What is the best way to modify a few fields in an XML using Java
I have a big XML which contains around 300 elements. I need to modify 2 or 3 elements in this xml using Java. I don't want to go for conventional marshalling and unmarshalling as it involves the ...
1
vote
3answers
131 views
Are XPath queries parsed right to left?
This popular Stack Overflow question explained why CSS selectors are parsed right to left. Are XPath queries evaluated in the same way? If this is dependent on implementation I'd appreciate knowing ...
0
votes
1answer
165 views
Titanium - xml attribute find and replace
I am working in Titanium mobile and im trying to parse and xml feed. The feed parses fine, but I am looking for exact attributes such as title, author, and description. But every so often, the feed ...
0
votes
2answers
120 views
How to ge two fields with one XPath?
I have a XPath that gets div i want to read. How to read class and name of the div with one XPath?
3
votes
2answers
4k views
How to get node value / innerHTML with xpath?
Well i have a xpath to dig to a class i want: //div[@class='myclass']. But it returns me the whole div (with the < div class='myclass'> also and i would like to return only the contents of this tag ...
1
vote
1answer
79 views
Java / Xpath— pulling a specific value among similar entities
So I have an xml file that is formatted something like this
<TopXmlTree>
<IndentedItem1>
<subvalue1>
<subvalue2>
<subvalue3>
...
2
votes
1answer
475 views
How to fetch internal links from a webpage?
I use XPath to parse a HTML webpage for fetching all internal links. DOMXPath will return all links provided in href. How can I separate internal an external links?
I introduce a series of string ...