[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] Split element with mixed content
Subject: Re: [xsl] Split element with mixed content
From: Abel Braaksma <abel.online@xxxxxxxxx>
Date: Thu, 02 Aug 2007 18:52:08 +0200
|
Abel Braaksma wrote:
I took your idea of mixed content a bit further. Here's the input:
<b>
very far over the beautiful
</b>
Oh, I forgot, and this is the output (split on the word 'over', in the
middle). Note that the depth does not matter. Note also, that it will
not work when the text you are searching for is split over several nodes
(when those are not adjacent text nodes).
<p>this
<b>
quick
</b>
brown fox
<span>
<style>
jumps
<b>
very far over</b>
</style>
</span>
</p>
<p>
<span>
<style>
<b> the beautiful
</b>
and stunningly
</style>
resilient,
</span>
utterly lazy
<q>
dog
</q>
</p>
Cheers again!
-- Abel
|