choose with otherwise statement : choose « XSLT stylesheet « XML Tutorial

XML Tutorial
1. Introduction
2. Namespace
3. XML Schema
4. XPath
5. XSLT stylesheet
Java
XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
XML Tutorial » XSLT stylesheet » choose 
5. 43. 4. choose with otherwise statement
File: Data.xml
<?xml version="1.0" encoding="ISO-8859-1"?>

<america>
 <source>
  <title>A</title>
  <url>http://www.java2java.com</url>
  <populations estimate="true" year="2002"/>
 </source>
 <nation>
  <name>USA</name>
  <capital>DC</capital>
  <population>32277942</population>
  <cc>dz</cc>
 </nation>
</america>


File: Transform.xslt

<?xml version="1.0" encoding="US-ASCII"?>
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="text" />

  <xsl:template match="america">
    <xsl:apply-templates select="nation" />
  </xsl:template>

  <xsl:template match="nation">
    <xsl:choose>
      <xsl:when test="population = 10000000">
        <xsl:value-of select="name" />
        <xsl:text> = 10M</xsl:text>
        <xsl:text>&#10;</xsl:text>
      </xsl:when>
      <xsl:when test="population = 1000000">
        <xsl:value-of select="name" />
        <xsl:text> = 1M</xsl:text>
        <xsl:text>&#10;</xsl:text>
      </xsl:when>
      <xsl:otherwise>
        <xsl:message terminate="yes">Not found!</xsl:message>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

</xsl:stylesheet>
5. 43. choose
5. 43. 1. choose statement
5. 43. 2. xsl:choose, xsl:when and xsl:otherwise
5. 43. 3. xsl:choose: check the value of an attribute
5. 43. 4. choose with otherwise statement
5. 43. 5. when test="position() mod 4 = 0"
5. 43. 6. Change style for even and odd
5. 43. 7. xsl:choose element is used for selection between several possibilities
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.