Re: [Flashcoders] when is a new line not a new line?

2006-05-19 Thread Boon Chew
You should figure it what's exactly in the string first by looping through your string and take it from there. You can print out the character code using String.charCodeAt(i) to see if you are really getting 13/10. Tom Rhodes [EMAIL PROTECTED] wrote: hello all, i'm getting xml data via http,

RE: [Flashcoders] when is a new line not a new line?

2006-05-19 Thread Kevin Aebig
Chances are you need to do both. Cr = Carriage Return Lf = Line Feed Try to split on \r\n !k -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Rhodes Sent: May 19, 2006 8:49 AM To: Flashcoders mailing list Subject: [Flashcoders] when is a new line