Introduction

XSLT (Extensible Stylesheet Language Transformations) is a language for transforming XML documents into other XML documents. Sometimes, the user wants some kind of XML structure instead of the whole XML. In that case, we can use XSLT transformation. This article will give us an idea about this.

Please have a look at the below image of the high-level structure.

XSLT

Let's create a sample console application to see how it works.

  1. Create a console application. Open Visual Studio - File - New Project - Console Application; give it a suitable name, such as - ‘XSLT_XML_Transformation’ and click OK.

    XSLT

  1. Let's create a main XML, i.e., input.xml. Right click on ‘Solution Explorer’ - Add - New Item and select XML file; give it a name like input.xml.

    XSLT

    I have created the below XML which contains a note that is the main element and under this, it contains other elements.

XML

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <note>
  3. <from>[email protected]</from>
  4. <to>[email protected]</to>
  5. <cc>[email protected]</cc>
  6. <bcc>[email protected]</bcc>
  7. <heading1>Reminder</heading1>
  8. <heading2>Important</heading2>
  9. <body>Don't forget me this weekend!</body>
  10. </note>

Requirement

We have created atransform file that generally has only 3 elements and also applied concatenation functionality for headings, separated by commas.

  1. Now, create an XSLT transform file to match the above requirement. Right-click on ‘Solution Explorer’ - Add - New Item and select XSLT File and give it a name like transform.xslt.

    XSLT

    XSLT code
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
  4. <xsl:output method="xml" indent="yes"/>
  5. <xsl:template match="/">
  6. <Details>
  7. <From>
  8. <xsl:value-of select="note/from"/>
  9. </From>
  10. <To>
  11. <xsl:value-of select="note/to"/>
  12. </To>
  13. <Heading>
  14. <xsl:value-of select="concat(note/heading1,', ',note/heading2)" />
  15. </Heading>
  16. </Details>
  17. </xsl:template>
  18. </xsl:stylesheet>

Some summary of XSLT functions is as below.

  1. Write the C# code to read the transform and XML files and generate the desired output XML.

    XSLT

  1. Result
    Please check the output result.
    1. <?xml version="1.0" encoding="utf-8"?>
    2. <Details>
    3. <From>[email protected]</From>
    4. <To>[email protected]</To>
    5. <Heading>Reminder, Important</Heading>
    6. </Details>

Conclusion

I hope that you got an idea of how to use XSLT.