Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


RE: [xsl] Truncated text string, relative to child node

From: "Michael Kay" <mike@------------>
To:
Date: 7/1/2008 10:19:00 PM
> I have an XML file like this:
> 
> <a> lorem ipsum text ... lorem ipsum <b> dolor </b> lorem ipsum ...
> lorem ipsum </a>
> 
> I want to create a string of the five words from <a> right 
> before the <b> tag, and a string of the five words 
> immediately after <b>.  All I can do is create strings from 
> the beginning or the end of the <a> tag, but basically I want 
> the text in the middle, relative to the child <b> node.

In 2.0, assuming the <a> element is the context node, the two sequences are
given by

subsequence(tokenize(b/following-sibling::text(), '\s'), 1, 5)

and

reverse(subsequence(reverse(tokenize(b/preceding-sibling::text(), '\s')), 1,
5))

In 1.0, you'll have to be prepared for something rather more verbose.

Michael Kay
http://www.saxonica.com/


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent