Thanks - I'll see if I can use the info to solve my problems... Elliot
<[EMAIL PROTECTED]> wrote in message news:22240@cfaussie... > > > This email is to be read subject to the disclaimer below. > > Elliot, > > Some browsers convert all the data they submit into UNIX format. This goes > back to the days of web servers being written for UNIX systems only. > > There are three formats for plain ASCII text, unix, windows and mac. The > only difference between them is the line endings. > > In windows there are two characters representing a line endings, > carriage return or CR (ASCII code 13) and LF (ASCII code 10). These > characters together represent a line ending. Either of them on their own > would show up as a little square in Notepad for example. > On UNIX / Linux line endings are represented by an LF only > On macs line endings are represented by a CR only. > > If you want to get rid of this warning, do a text replace from "#Chr(10)#" > to "#Chr(13)##Chr(10)#". That should take care of things, but be careful > not to replace LFs that are part of a CRLF pair. > > Hope this helps > > Vik > --------------------- > Viktor Radnai > Web Developer, National E-Commerce, Ernst & Young > Direct: +61 2 9248 4361 > > > > > "lists.daemon.com.au" > <[EMAIL PROTECTED]> To: "CFAussie Mailing List" <[EMAIL PROTECTED]> > Sent by: cc: > [EMAIL PROTECTED] Subject: [cfaussie] Odd file maipulation > mon.com.au > > 24/01/2003 10:08 AM > Please respond to "CFAussie > Mailing List" > > > > > > Hi, > > I'm reading a file (cffile) finding a marker in the text, using mid to chop > off up to and including the marker then saving string back using cffile. > All > on windows machines. When I open the updated file cfstudi asks convert it > to/from to unix style doube spaces ??? What is going on. Sometimes the mid > starts appears to start earlier than the char count specified - any ides. > > Elliot > > > > --- > You are currently subscribed to cfaussie as: > [EMAIL PROTECTED] > To unsubscribe send a blank email to > [EMAIL PROTECTED] > > MX Downunder AsiaPac DevCon - http://mxdu.com/ > > > > > -------------------- > NOTICE - This communication contains information which is confidential and > the copyright of Ernst & Young or a third party. > > If you are not the intended recipient of this communication please delete > and destroy all copies and telephone Ernst & Young on 1800 655 717 > immediately. If you are the intended recipient of this communication you > should not copy, disclose or distribute this communication without the > authority of Ernst & Young. > > Any views expressed in this Communication are those of the individual > sender, except where the sender specifically states them to be the views of > Ernst & Young. > > Except as required at law, Ernst & Young does not represent, warrant and/or > guarantee that the integrity of this communication has been maintained nor > that the communication is free of errors, virus, interception or > interference. > > Liability limited by the Accountants Scheme, approved under the > Professional Standards Act 1994 (NSW) > -------------------- > > > > > --- You are currently subscribed to cfaussie as: [email protected] To unsubscribe send a blank email to [EMAIL PROTECTED] MX Downunder AsiaPac DevCon - http://mxdu.com/
