<comment>
<content>
This is a really long string. It is really long because it contains plenty of characters.
The purpose of this exercise is to separate this content element into blocks containing
one hundred each
</content>
</comment>
I have the XML file above and I need to use XSLT to gather 10 characters at a time to be placed under the <content>. Example:
<content>
<group1>This is a </group1>
<group2>really lon</group2>
<group3>...</group3>
</content>
Anyone help would be greatly appreciated.