Hi folks,
I have an xml that has text within "word" elements e.g
<word>Police</word>
<word>confirmed</word>
<word>they are</word>
<word>questioning</word>
<word>a</word>
<word>man</word>
The problem is when I apply the xslt the text appears like "Policeconfirmedthey arequestioningaman".
Here is the xslt snippet that does this transform
<Paragraph>
<xsl:for-each select="./speaker/segment">
<xsl:value-of select="./nbest"/>
</xsl:for-each>
</Paragraph>
Can anyone offer any help as to how I can display this as "Police confirmed they are questioning a man"?
Many thanks.