RE: [xsl] Matching a series of elements in a function

Subject: RE: [xsl] Matching a series of elements in a function
From: Sundar Shanmugasundaram <SSHANMUGASUNDARAM@xxxxxxxxxxxxx>
Date: Wed, 7 May 2003 20:14:57 +0530
<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


Current Thread