using wildcards in <xsl:match=&ldquo;myTag*&rdquo;>

vicseo

New Member
I'm trying to create an xsl template that will accept wildcards as part of the template match as the following example will show:\[code\]<xsl:template match="*_Nokia_5.0"> <xsl:value-of select="."/> <xsl:text>,</xsl:text> <xsl:if test="position()=last()"> <xsl:text>
</xsl:text> </xsl:if>\[/code\]What I'm trying to achieve is 'match any tag that has 'Nokia_5.0' as part of the string.Is there any way I can do this in xslt 1.0?Thanks
 
Back
Top