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 want to ask how I can transform the following XML using XSLT:

<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" encoding="UTF-8"
                omit-xml-declaration="no" indent="no" />

    <xsl:template match="/" />
</xsl:stylesheet>

source XML:

<root>
    <header>
        <version>1</version>
    </header>
    <line>
        <id> 1 </id>
    </line>
    <line>
        <id> 2 </id>
    </line>
    <subline>
        <id> 1 </id>
    </subline>
    <subline>
        <id> 2 </id>
    </subline>
</root>

Target:

<root>
    <header>
        <version>1</version>
    </header>
    <line>
        <id> 1 </id>
    </line>
    <subline>
        <id> 1 </id>
    </subline>
    <line>
        <id> 2 </id>
    </line>
    <subline>
        <id> 2 </id>
    </subline>
</root>

etc...

Thanks for your support

share|improve this question
The answer to an unconstructive post is 42 : Look, have you even tried googling for the basics of XSLT? – Rikoshay Nov 11 '12 at 15:18
I'd recommend "parse", "sort", "write". – yhw42 Nov 11 '12 at 15:20
1  
You need to show what you have done. Post your xslt and then ask specific questions. – Caribou Nov 11 '12 at 15:21
1  
Even better, take the time to explain the nature of the transformation you are looking for. Are you wanting to simply swap one <line> and one <subline>? Would you rather alternate them? Or something else? – ABach Nov 11 '12 at 21:12
Do you want to sort the elements? If so, have a look at <xsl:sort>. – Thomas W Nov 11 '12 at 22:09

closed as not a real question by Sean B. Durkin, Dominik Honnef, Ryan Bigg, epochwolf, Sumit Singh Nov 12 '12 at 5:53

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Use:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/>

  <xsl:template match="/root">
    <xsl:copy>
      <xsl:apply-templates select="*[not(self::line or self::subline)]"/>
      <xsl:apply-templates select="line | subline">
        <xsl:sort select="id"/>
      </xsl:apply-templates>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>
share|improve this answer

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