xsl-list
[Top] [All Lists]

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

2016-05-09 13:36:50
At 2016-05-09 17:40 +0000, David Carlisle 
d(_dot_)p(_dot_)carlisle(_at_)gmail(_dot_)com wrote:
On 9 May 2016 at 18:17, Costello, Roger L. costello(_at_)mitre(_dot_)org
<xsl-list-service(_at_)lists(_dot_)mulberrytech(_dot_)com> 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(_at_)CraneSoftwrights(_dot_)com |
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
--~----------------------------------------------------------------
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
--~--

<Prev in Thread] Current Thread [Next in Thread>