8
votes
4answers
1k views
What is more efficient for parsing Xml, XPath with XmlDocuments, XSLT or Linq?
I have parsed Xml using both of the following two methods...
Parsing the XmlDocument using the object model and XPath queries.
XSL/T
But I have never used...
The Linq Xml object model that was …
7
votes
3answers
2k views
How can I convert a string to upper- or lower-case with XSLT?
How do you do case conversion in XSL?
<xsl:variable name="upper">UPPER CASE</xsl:variable>
<xsl:variable name="lower" select="???"/>
6
votes
9answers
2k views
How best to use XPath with very large XML files in C#?
I need to do some processing on fairly large XML files ( large here being potentially upwards of a gigabyte ) in C# including performing some complex xpath queries. The problem I have is that the …
6
votes
3answers
654 views
XSLT, XPath and InStr
Is there a way to find a node matched on part of a value.
If I have the following:
<competition id="100" name="Barclays Premier League"/>
<competition id="101" name="CocaCola Championship" …
6
votes
7answers
3k views
How do you identify duplicate elements in an XPath 2.0 sequence ?
I have an XPath expression which provides me a sequence of values like the one below:
1 2 2 3 4 5 5 6 7
It is easy to convert this to a set of unique values "1 2 3 4 5 6 7" using the distinct-values …
6
votes
4answers
1k views
XPath and Selecting a single node
I'm using XPath in .NET to parse an XML document, along the lines of:
XmlNodeList lotsOStuff = doc.SelectNodes("//stuff");
foreach (XmlNode stuff in lotsOStuff)
{
XmlNode stuffChild = …
5
votes
5answers
439 views
Tool / utility for checking debugging XPath queries
Has anyone got any recommendations for tools/utilities to use in creating/debugging XPath queries for Windows ?
5
votes
4answers
2k views
How to get tag name of root element in an XML document w/ XSLT?
Hi all, I'm interested in assigning the tag name of the root element in an xml document to an xslt variable. For instance, if the document looked like (minus the DTD):
<foo …
5
votes
6answers
2k views
Parse HTML via XPath
In .Net, I found this great library, HtmlAgilityPack that allows you to easily parse non-well-formed HTML using XPath. I've used this for a couple years in my .Net sites, but I've had to settle for …
5
votes
5answers
5k views
how to use xpath in python
Is there a full implementation? How is the library used, where is its website?
4
votes
2answers
59 views
SelectSingleNode always returns null?
Taking this simplifed example of my XML:
<?xml version="1.0"?>
<message xmlns="http://www.mydomain.com/MyDataFeed" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" …
4
votes
3answers
141 views
Delphi/MSXML: XPath queries fail
I've loaded a XML document, and now I wish to run a XPath query to select a certain subset of the XML. The XML is
<?xml version="1.0"?>
<catalog …
4
votes
2answers
166 views
XPath: How to select nodes which have no attributes?
Using XPath, how to select nodes which have no attributes (where attribute count = 0)?
For example:
<nodes>
<node attribute1="aaaa"></node>
<node …
4
votes
7answers
264 views
Xpath visualization
I am looking for a XML tool which does the following things.
Allows me to enter xpath expressions and highlights the nodes selected
Assists me in creating complex xpath expressions.
What are other …
4
votes
3answers
422 views
XPath to select multiple tags
given this simplified data format:
<a>
<b>
<c>C1</c>
<d>D1</d>
<e>E1</e>
<f>don't select this one</f>
…
