Reputation: 1976
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?
Upvotes: 1
Views: 755
Reputation:
In XPath 1.0
substring($nodeset[self::leading],1,70)
Upvotes: 2