I am trying to parse an xml feed using xpath. The feed contains categories that look like this:

<categories>
<category id="6">Category 6</category>
<category id="12">Category 12</category>
<category id="19">Category 19</category>
</categories>

I currently using the path 'categories' to select all child nodes of which returns "Category 6Category 12Category 19" in string format. I would like the output to be like "Category 6, Category 12, Category 19" instead. How can I achieve this? I looked at xpath functions but nothing seems to fit this task.

I'm using this with Drupal's xpath parser module

link|improve this question

You should specify programming language you use to parse the XML and how you display XPath result. – AlexAtNet Jun 3 '11 at 7:21
Good question, +1. See my answer for a confirmation that this problem cannot be solved in pure XPath 1.o and for an extremely short and easy XPath 2.0 one-liner solution :) – Dimitre Novatchev Jun 3 '11 at 13:14
feedback

3 Answers

up vote 1 down vote accepted

Pure XPath is:

concat(categories/category[id="6"],', ',
       categories/category[id="12"],', ',
       categories/category[id="19"])

But it's not going to be very useful if you need something dynamic, I mean if you don't know categories children a priori.

For a dynamic selection use:

string-join(categories/*,', ')

or

string-join(/categories/*,', ')

depending on the context.

link|improve this answer
This is essentially what I want but I need it to be dynamic. – glumbo Jun 3 '11 at 8:26
Can you use XPath 2.0? – empo Jun 3 '11 at 8:28
Sure, we could use xpath 2.0 – glumbo Jun 3 '11 at 8:39
Ok, try the other solution provided in my answer. – empo Jun 3 '11 at 8:49
How does it work? – empo Jun 3 '11 at 10:03
show 1 more comment
feedback

In general, you should use the /categories/category xpath to select the category nodes and then enumerate the nodeset and display the content of each node, followed by the comma (except the last node). The exact code depends on the technology you use.

link|improve this answer
Is it possible using only xpath syntax? – glumbo Jun 3 '11 at 8:26
Yes. See empo's answer. – AlexAtNet Jun 3 '11 at 12:51
feedback

In the general case of statically unknown XML document the wanted result cannot be produced using only pure XPath 1.0 -- some help from the programming language that is hosting it is needed.

A simple and pure XPath 2.0 solution for this is:

string-join(/*/*,', ')
link|improve this answer
It works. Thanks – glumbo Jun 3 '11 at 20:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.