ok let's say i have an xml file like this
Code:
<index>
<p>Introduction 109 Author Message 200 About 334</p>
</index>
I need to write an xslt that can make that paragraph looking like this
Introduction 109
Author Message 200
About 334
I'm not sure how can i do this...My guess is that I need to look for a number and when i find the number put an end line and keep doing this till i get to the end..
i think this is the idea but i don't know how to implement it on xslt