Thanks, Mike for the thoughts.
On Wed, Jul 18, 2018 at 3:48 PM, Michael Kay mike(_at_)saxonica(_dot_)com <
xsl-list-service(_at_)lists(_dot_)mulberrytech(_dot_)com> wrote:
Note that you can achieve what you are doing in 3.0 using the
unparsed-text-lines() function, and in 2.0 it can be done more simply using
tokenize() --
3.0 with expand-text=yes
<xsl:for-each select="unparsed-text-lines('test.txt')">{.}<br/></xsl:for-
each>
2.0:
<xsl:for-each select="tokenize(unparsed-text('test.txt')),
'\r\n'))"><xsl:value-of select="."/><br/></xsl:for-each>
Michael Kay
Saxonica
--
Regards,
Mukul Gandhi
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--