Re: [xsl] How to determine the end-of-line marker in unparsed-text?

Subject: Re: [xsl] How to determine the end-of-line marker in unparsed-text?
From: "G. Ken Holman g.ken.holman@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Mon, 9 May 2016 18:36:35 -0000
At 2016-05-09 17:40 +0000, David Carlisle d.p.carlisle@xxxxxxxxx wrote:
On 9 May 2016 at 18:17, Costello, Roger L. costello@xxxxxxxxx
<xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx> wrote:
> I am writing an XSLT program to read unparsed-text. I want my program to work regardless of the end-of-line marker used by the unparsed-text.
>
> Here are the end-of-line markers that are typically used in files, I think:
>
> CR + LF
> LF
> CR
>...
I think it's usually better to just write the code so that it works
with any EOL marker, any such test as you suggest above will get
confused with the (not uncommon) case of files with inconsistent line
endings for example.


For example if you have a text file file.txt then

<xsl:param name="filelinest"
       select="tokenize(unparsed-text('file.txt'),'[\r\n]+')"/>

will give you a sequence of strings where any combination of U+000A or
U+000D counts as a separator.

True, bit it won't give you empty lines that are sequences of end-of-line sequences.


The regex I use for this purpose is:

<xsl:param name="filelinest"
           select="tokenize(unparsed-text('file.txt'),'\r?\n|\r')"/>

... which I'm pretty sure will give one empty lines when they exist.

. . . . . . Ken


-- Check our site for free XML, XSLT, XSL-FO and UBL developer resources | Streaming hands-on XSLT/XPath 2 training @US$45: http://goo.gl/Dd9qBK | Crane Softwrights Ltd. _ _ _ _ _ _ http://www.CraneSoftwrights.com/s/ | G Ken Holman _ _ _ _ _ _ _ _ _ _ mailto:gkholman@xxxxxxxxxxxxxxxxxxxx | Google+ blog _ _ _ _ _ http://plus.google.com/+GKenHolman-Crane/posts | Legal business disclaimers: _ _ http://www.CraneSoftwrights.com/legal |


--- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus

Current Thread