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.

I'm working on an XSL stylesheet for some XML encoded finding aids. At the detailed description level for the contents of the collection, I have some containers like so:

<container type="folder">1</container>

I need to select both the @type AND the number value in the container, however all I can manage to pull is the number. How should I structure my query to get folder 1?

share|improve this question

1 Answer

up vote 1 down vote accepted

If current node is container:

<xsl:value-of select="concat(@type, ' ', text())"/>

Input XML:

<container type="folder">1</container>

XSLT:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="container">
        <xsl:value-of select="concat(@type, ' ', text())"/>
    </xsl:template>
</xsl:stylesheet>

Output:

folder 1
share|improve this answer
2  
Works beautifully. Thanks! I never remember concat. – librarion Jul 25 '11 at 16:50
@librarion, You're welcome! – Kirill Polishchuk Jul 26 '11 at 4:43

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.