xsl-list
[Top] [All Lists]

RE: Matching a series of elements in a function

2003-05-07 07:44:57
<snip>
This works fine, as long as the search text is found in the _first_ process
element. When the text is in the second or third or fourth, it doesn't
match. Is it possible to write this in such a way that it matches the text
in _any_ of the process elements?
</snip>

Use this XSL file

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  <xsl:output method="html" indent="yes" />     
        <xsl:template match="/">
                <xsl:apply-templates select="//com/process"/>
        </xsl:template>
        <xsl:template match="process">
                <xsl:value-of select="."/>
        </xsl:template>
</xsl:stylesheet>

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>