xsl-list
[Top] [All Lists]

Re: [xsl] Detecting a closing tag in xslt

2006-05-04 07:53:03
On 5/4/06, Tech Savvy <tecsavvy(_at_)gmail(_dot_)com> wrote:
Hi:

I have an xml file like this:

<list1>

......
</list1>

<graphic>

</graphic>

Is there a way to detect the closing tag </list1> in XSLT?

Ummm, no.  That's the point of the underlying model.  Things get read
into the parser, then the processor deals with the tree of elements,
attributes, and other types of node.  That being said, there might be
some tricky way to force it XSLT 2.0.  If you want to use a streaming
model, there's SAX.

Why do you think you need to see the closing tag?  Odds are there's a
way to do what you want in XSLT.

Jon Gorman

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--