Subject: Re: how do you match patterns?
From: "James Fuller" <james.fuller@xxxxxxxxxx>
Date: Tue, 23 Jul 2002 00:25:21 +0100
|
Hello Michael,
your example tells me that you need to get some of the basics first
goto www.dpawson.co.uk
or
www.zvon.org
and do some of the simple tutorials
whenever you want to match using templates in the manner you want, you prob
need to use contains() function
<xsl:template
match="page/messages/error[contains(@type,$somesearchparameter)]">
</xsl:template>
here is a reference for contains
http://www.vbxml.com/xsl/funccontains.asp
gl., jim fuller
----- Original Message -----
From: "Michael" <mogmios@xxxxxxxxxxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Tuesday, July 23, 2002 12:09 AM
Subject: how do you match patterns?
> I need to have several stylesheets included by the main stylesheet and in
> some cases the subsheets will handle the same tags. I want to add a
> pattern match to the template matches so that I can have the tag handled
> by the proper stylesheet. Something similar to this:
>
> <xsl:template match="page/messages/error[@type like '%MyModule%']">
> ... blah ...
> </xsL:template>
>
>
> Any suggestions? Thanks.
>
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|