Re: Help with matching

Subject: Re: Help with matching
From: "Garriss Jr.,James P." <jgarriss@xxxxxxxxx>
Date: Mon, 18 Oct 1999 09:35:55 -0400
At 08:36 AM 10/18/99 , Leigh Dodds wrote:
>Hi,
>
>I've got a document, part of whose structure are some elements
>of the form:
>
><foo>
> <bar>1</bar>
> <bar>1</bar>
></foo>
>
>and also :
>
><foo>
> <bar>
>   <bar>3</bar><bar>4</bar>
> </bar>
></foo>
>
>I'm writing to write a template matching rule which treats the
>second case separately from the first.

try:

<xsl:template match="foo/bar">
  ...

<xsl:template match="foo/bar/bar">
  ...

James Garriss | The MITRE Corporation | jgarriss @ mitre.org


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



Current Thread