Subject: Re: Modification to The CSV to XML transform XSLT v2 from Andrew Welch
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 28 Mar 2008 12:22:31 GMT
|
> The regex '\r?\n' works on Windows and Unix line endings but I'm not sure
> about Mac.
That doesn't work on mac (which uses a single \r with no \n) the
simplest thing to do is
[\r\n]+
which works everywhere so long as you don't mind losing blank lines.
if you do mind losing blank lines then replacing
(\r\n?) by \n does the right thing I think.
> Not to mention IBM mainframes and other exotica.
yes if you want to be like xml 1.1 and support NEL need to replace
(\r\n?|͵) by \n
David
________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.
This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________
|