Re: equal signs in XML attribute values

Subject: Re: equal signs in XML attribute values
From: "Kent Fitch" <kent.fitch@xxxxxxxxxxxx>
Date: Wed, 2 Dec 1998 11:00:39 +1100
From: Freed, Erik <freed@xxxxxxxxxxxxxxxxxx> wrote:


>This may have a really obvious answer, but I am trying to put the
>following into an XSL stylesheet in IE5b2:
>
> 
> <xsl:apply-templates select="bar">
> <xsl:template match="@foo=3" />
> </xsl:apply-templates>
>
>IE5b2 graciously spits back the following message:
>
> Expected token 'eof' found '='. @foo-->=<--3


Maybe:
  [@foo = '3']

eg:
  //bar[@foo = '3']

should match 'bar' elements under the current root
which have an attribute of 'foo' equal to '3'

see this URL (split over 2 lines...):

http://www.microsoft.com/workshop/xml/xsl/reference/
XSLPattern-MatchingSyntax.asp 

Kent Fitch                           Ph: +61 2 6276 6711
ITS  CSIRO  Canberra  Australia      kent.fitch@xxxxxxxxxxxx



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


Current Thread