Re: How to split a file on the CR carriage Return and/or replace the \r with \n ??

2006-07-28 Thread Joshua Colson
On Fri, 2006-07-28 at 22:00 +0200, Xavier Noria wrote: > That's wrong. > > $/ is eq "\n" everywhere, and "\n" has length 1 everywhere. "\n" is > eq "\012" in all systems except MacOS pre-X where it is eq "\015". In > particular "\n" is *not* CRLF on Windows. > > My article about newlines is m

Re: How to split a file on the CR carriage Return and/or replace the \r with \n ??

2006-07-28 Thread Xavier Noria
On Jul 28, 2006, at 9:50 PM, Joshua Colson wrote: On Fri, 2006-07-28 at 21:28 +0200, Dr.Ruud wrote: Robert Citek schreef: Try a different value for the INPUT_RECORD_SEPARATOR ($/): $/ = "\n" ; (spaces added for clarity) Is that different from the default? (see perlvar) Using ActiveState

Re: How to split a file on the CR carriage Return and/or replace the \r with \n ??

2006-07-28 Thread Joshua Colson
On Fri, 2006-07-28 at 21:28 +0200, Dr.Ruud wrote: > Robert Citek schreef: > > > Try a different value for the INPUT_RECORD_SEPARATOR ($/): > > > > $/ = "\n" ; > > (spaces added for clarity) > > Is that different from the default? > (see perlvar) Using ActiveState on Windows it is. -- Joshua C

Re: How to split a file on the CR carriage Return and/or replace the \r with \n ??

2006-07-28 Thread Dr.Ruud
Robert Citek schreef: > Try a different value for the INPUT_RECORD_SEPARATOR ($/): > > $/ = "\n" ; (spaces added for clarity) Is that different from the default? (see perlvar) -- Affijn, Ruud "Gewoon is een tijger." -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m

Re: How to split a file on the CR carriage Return and/or replace the \r with \n ??

2006-07-28 Thread Steve Pittman
Thanks to everyone for your suggestions I replaced the INPUT_RECORD_SEPARATOR ($/) as suggested My script is working great!! Thanks Very Much!!! Steve >>> Robert Citek <[EMAIL PROTECTED]> 7/26/2006 5:06 PM >>> On Jul 26, 2006, at 2:59 PM, Steve Pittman wrote: > I am using activestate o

Re: How to split a file on the CR carriage Return and/or replace the \r with \n ??

2006-07-26 Thread Mumia W.
On 07/26/2006 02:59 PM, Steve Pittman wrote: I am using activestate on a windows box ...the files I am parsing are Unix files...I tried this so far... open ( IN, "<$_[0]" )||die "Can't open DAT source file: $tempFile $!\n"; while (){s/\r/\n/g;@lines = ;}# close (IN);

Re: How to split a file on the CR carriage Return and/or replace the \r with \n ??

2006-07-26 Thread Robert Citek
On Jul 26, 2006, at 2:59 PM, Steve Pittman wrote: I am using activestate on a windows box ...the files I am parsing are Unix files...I tried this so far... open ( IN, "<$_[0]" )||die "Can't open DAT source file: $tempFile $!\n"; while (){s/\r/\n/g;@lines = ;}# close (IN);

Re: How to split a file on the CR carriage Return and/or replacethe \r with \n ??

2006-07-26 Thread Rob Dixon
Steve Pittman wrote: > > I am using activestate on a windows box ...the files I am parsing are > Unix files...I tried this so far... > > open ( IN, "<$_[0]" )||die "Can't open DAT source file: $tempFile $!\n"; > while (){s/\r/\n/g;@lines = ;} > close (IN); > > foreach $line (@lines) > { Y

Re: How to split a file on the CR carriage Return and/or replace the \r with \n ??

2006-07-26 Thread Xavier Noria
On Jul 26, 2006, at 21:59, Steve Pittman wrote: I am using activestate on a windows box ...the files I am parsing are Unix files...I tried this so far... open ( IN, "<$_[0]" )||die "Can't open DAT source file: $tempFile $!\n"; while (){s/\r/\n/g;@lines = ;}# close (IN);

How to split a file on the CR carriage Return and/or replace the \r with \n ??

2006-07-26 Thread Steve Pittman
I am using activestate on a windows box ...the files I am parsing are Unix files...I tried this so far... open ( IN, "<$_[0]" )||die "Can't open DAT source file: $tempFile $!\n"; while (){s/\r/\n/g;@lines = ;}# close (IN); foreach $line (@lines) { -- To u

Re: Split a file

2002-11-07 Thread zentara
On Wed, 06 Nov 2002 10:17:00 -0600, [EMAIL PROTECTED] (Robert Citek) wrote: >>I am trying to take a file of variable length on a daily basis and >>divide it up into 4 equal parts for processing on each file. Does >>someone have an easy way to do this? >Below is a sample script which may lead y

Re: Split a file

2002-11-06 Thread Robert Citek
Hello Johnny, At 12:31 PM 11/4/2002 -0500, Johnny Hall wrote: >I am trying to take a file of variable length on a daily basis and >divide it up into 4 equal parts for processing on each file. Does >someone have an easy way to do this? Did not read your attachment since my mail processor remov

Re: Split a file

2002-11-05 Thread John W. Krahn
Johnny Hall wrote: > > Hello all, Hello, > I am trying to take a file of variable length on a daily basis and > divide it up into 4 equal parts for processing on each file. Does > someone have an easy way to do this? > > The original file is just a series of numbers like.. > > 3233404936 > 32

RE: Split a file

2002-11-04 Thread Timothy Johnson
print FILE3 $_; $_ = || last; print FILE4 $_; } Another alternative would be to use sysread to break up the file into equal parts, but it would be difficult to break it up by lines. I'm not the expert at sysread, or I'd give you an example. -Original Message- From: Joh

Split a file

2002-11-04 Thread Johnny Hall
Hello all, I am trying to take a file of variable length on a daily basis and divide it up into 4 equal parts for processing on each file. Does someone have an easy way to do this? The original file is just a series of numbers like.. 3233404936 3233404934 3233669122 3233557761 3233818369 3234

Re: split a file

2001-08-22 Thread Ron Smith
--- Ron Smith >From: Pedro A Reche Gallardo <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>, "[EMAIL PROTECTED]" ><[EMAIL PROTECTED]> >Subject: split a file >Date: Tue, 21 Aug 2001

Re: split a file

2001-08-21 Thread Dan Grossman
Pedro, On Tue, 21 Aug 2001, Pedro A Reche Gallardo wrote: > Hi All, I have a file (see below) that I would like to split in three > files: One file for the information under "Alignment (DIALIGN > format)", another for the information under the line "Alignment (FASTA > format)" and a third o

split a file

2001-08-21 Thread Pedro A Reche Gallardo
Hi All, I have a file (see below) that I would like to split in three files: One file for the information under "Alignment (DIALIGN format)", another for the information under the line "Alignment (FASTA format)" and a third one for the information under sequence tree. Any help to do this will