Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Assume I have this XML...

<books>
  <book>
    <author>
    <title>
    <publish_date>
    <isbn_number>
  <book>
</books>

...how can I write a function, or use built in functions, to return a string that is just a comma-separated concat of all child element names of book? like this...

author,title,publish_date,isbn_number

I need this to print the first line header in a csv file

share|improve this question

1 Answer

up vote 2 down vote accepted

The following minimal stylesheet works on your given input (modified to be well-formed):

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="text"/>
    <xsl:strip-space elements="*"/>
    <xsl:template match="book/*">
        <xsl:value-of select="local-name()"/>
        <xsl:if test="position() != last()">,</xsl:if>
    </xsl:template>
</xsl:stylesheet>
share|improve this answer
Actually, should'd this be a for-each? it's not working – Raffian Nov 8 '11 at 15:59
@RaffiM - This is possible with a for-each, but it's definitely not necessary. – lwburk Nov 8 '11 at 16:20
@RaffiM - Try changing the template match to match="/books/book/*" – Daniel Haley Nov 8 '11 at 23:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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