0
votes
4answers
25 views
XPath expression help
I have an xml file like this:
<students>
<student name=....>
</student>
<student name=....>
</student>
<student name=....>
</student>
< …
1
vote
2answers
42 views
Python XPath Result displaying only []
Hey I have just started to use Python recently and I want to use it with a bit of xPath, the thing is when I print the result of the query I only get [] and I don't know why =S
…
0
votes
2answers
17 views
can DOMXPath::query be limited to a certain depth?
Is there a way to limit the depth DOMXPath::query will look at?
Consider the following document:
<div>
<span>
<div>
</div>
</sp …
1
vote
2answers
33 views
How can you select a node that’s an unknown number of levels deep from a tag in XPath?
Example, if I have
<form name="blah">
<input name="1"/>
<input name="2"/>
<table>
<tr>
<td>
<unkown number …
1
vote
2answers
20 views
XSL variable number of child nodes…
Hey All,
I've got some XML elements with a number attached as more are available.
Such as this:
<Images>
<Image1>C:\Path\To\AnImage</Image1>
<Image …
0
votes
2answers
37 views
XSLT / Xpath: Selecting a preceding comment
I have XML in the following format which I want to reformat:
<blocks>
<!-- === apples === -->
<block name="block1">
...
</block>
<! …
2
votes
3answers
22 views
XPath for selecting parent nodes based on contents of current node?
I have an XML document with a section similar to the following:
<release_list>
<release>
<id>100</id>
<file_list>
<file>
…
0
votes
1answer
13 views
how to check if xpath node contains part of a string or many strings and get innerHTML ?
how can i express in xpath
a) need select elements which contains specified keyword. (how to make it case insensitive?)
z/x/c/v/a[normalize-space(text())='keyword']
b) need to …
0
votes
2answers
63 views
How to use XSLT 1.0 or XPath to manipulate an HTML string
This is my problem: The code snippet below (inside the <xsl:choose>) does not reliably strip <p>, <div> or <br> tags out of a string using a combination of …
3
votes
2answers
44 views
how do i add a comment to an xpath ?
for example i have an xpath and wish to add a comment near it to identify it.
/html/body/div/table/tr/td/a{this is a link}
0
votes
2answers
35 views
DOM/XPATH in PHP: What is nodeValue?
Can someone explain to me what is nodeValue in this and write out how nodeValue look like or write out what's in nodeValue? EDIT: Sorry! Yes, this is PHP.
And..
foreach ($element …
0
votes
2answers
27 views
how to select xml node using near element
Using XPath and the HTML Agility Pack, I need to select the destination text using color:#ff00ff.
My HTML looks like this:
<table>
<tr style="color:#ff00ff">
…
1
vote
2answers
24 views
How do I access properties from parent document to use in children
I am new to Umbraco CMS. PLease help.
I have a Umbraco website in which I created a DocumentType called 'Master'. The 'Master' page lets user input a goal and amount for a fund …
1
vote
2answers
30 views
Parsing namespaced XML using libxml-ruby
I'm attempting to parse XML in the following format (from the European Central Bank data feed) using libxml-ruby:
<?xml version="1.0" encoding="UTF-8"?>
<gesmes:Envelope …
1
vote
0answers
17 views
What’s the most efficient way to do recursive XPath queries using libxml2?
I'm trying to put a thin wrapper around libxml2 so that it's easy to do successive xpath queries on an XML document. I want to know the most efficient way to store the context (not …
