tags:

views:

29

answers:

1

I have node set with header, leading, body text etc... I want to make an excerpt and show only the first 70 characters of the leading. Is there a way to do this in XSLT?

+2  A: 

In XPath 1.0

substring($nodeset[self::leading],1,70)
Alejandro