Re: [xsl] Node Text parsing...

Subject: Re: [xsl] Node Text parsing...
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 7 Nov 2001 18:35:30 GMT
Do you want your search matching to cross node boundaries?
ie if you are searching for "hello world" do you expect
<b>hello</b> <i>world</i>
to succeed?

If so, then it gets hard but if not then all you need to do is just
use call your template on text nodes rather than on the element node
that contains mixed content. So <b> <i> etc will all be copied (if that
is what the templates for those nodes do, and then have a template that
match="text()" that calls your named template.

In fact if it's only text (and only english) you don't need an extension
function, just the standard contains() and translate() functions should
be enough to do a case insensitive search.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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


Current Thread