xsl:for-each

Selects a set of nodes in the source document and instantiates the contained template once for each node in the set.

Format

<xsl:for-each select="pattern">
               
  [<xsl:sort[select="expression"][optional_attribute]/>]
               
  template_body 
               
</xsl:for-each>
               

            

Description

The select attribute is required and the pattern must evaluate to a node set. The XSLT processor instantiates the embedded template with the selected node as the current node and with a list of all selected nodes as the current node list.

By default, the new list of source nodes is processed in document order. However, you can use the xsl:sort instruction to specify that the selected nodes are to be processed in a different order. See xsl:sort.

The xsl:for-each instruction is useful when the result document has a regular, known structure. When you know that you want to instantiate the same template for each node in the current node list, the xsl:for-each instruction eliminates the need to find a template that matches each node.

Tip

 

You can create an xsl:for-each element automatically using the XSLT mapper.

Example

For example, suppose your source document includes the following XML:

<books>
               
  <author>
               
    <name>Sara Peretsky</name>
               
    <booktitle>Bitter Medicine</booktitle>
               
    <booktitle>Killing Orders</booktitle>
               
  </author>
               
  <author>
               
    <name>Dick Francis</name>
               
    <booktitle>Reflex</booktitle>
               
    <booktitle>Proof</booktitle>
               
    <booktitle>Nerve</booktitle>
               
  </author>
               
</books>
               

            

The following stylesheet creates an HTML document that contains a list of authors. Each author is followed by the titles of the books the author wrote. It does not matter how many authors there are nor how many titles are associated with each author. The stylesheet uses the xsl:for-each instruction to process each author and to process each title associated with each author.

<xsl:stylesheet 
               
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
               
<xsl:template match = "/">
               
  <html>
               
    <head><title>Authors and Their Books</title></head>
               
    <body> 
               
      <xsl:for-each select = "books/author">
               
    <p>
               
      <xsl:value-of select = "name"/>
               
    <br>
               
      <xsl:for-each select = "booktitle">
               
      <xsl:value-of select = "."/>
               
    <br>
               
      </xsl:for-each>
               
    </p>
               
      </xsl:for-each>
               
    </body>
               
  </html>
               
</xsl:template>
               
</xsl:stylesheet>
               

            

The result document looks like this:

<html>
               
<head>
               
<title>Authors and Their Books</title>
               
</head>
               
<body>
               
<p>
               
Sara Peretsky<br>
               
Bitter Medicine<br>
               
Killing Orders<br>
               
</p>
               
<p>
               
Dick Francis<br>
               
Reflex<br>
               
Proof<br>
               
Nerve<br>
               
</p>
               
</body>
               
</html>
               

            

Government Agencies That Use Stylus Studio

Government agencies all around the nation are pledging their allegiance to Stylus Studio. Come see which government agencies are using the only XML IDE by the people and for the people.

WYSIWYG XSLT Designer

Stylus Studio's powerful and easy-to-use WYSIWYG ("What you see is what you get") XSLT Designer lets you create XSLT stylesheets without writing any code! Go from a blank slate to solid, robust XSLT in minutes, using simple drag-and-drop operations.

Getting EDI to XML and back to EDI Again: Round Trip Engineering using Stylus Studio URL Adapters

A free online video demonstration shows how to use Stylus Studio's Adapter URL technologies to convert EDI to XML and back again. Convert, validate, view and edit EDIFACT data directly in Stylus Studio.

Convert DTD to XSD

learn how to convert DTD to XML Schema

Stylus Most Wanted

 
Free Stylus Studio XML Training:
W3C Member