Re: working with 3-dimensional array

2007-09-14 Thread Tim McGeary
uot; <[EMAIL PROTECTED]> Newsgroups: perl.beginners To: Sent: Thursday, September 13, 2007 11:55 PM Subject: Re: working with 3-dimensional array - Original Message - From: "Tim McGeary" <[EMAIL PROTECTED]> Hi all, I'm trying to read in two file sets of library re

Re: working with 3-dimensional array

2007-09-13 Thread Chris Charley
- Original Message - From: ""Chris Charley"" <[EMAIL PROTECTED]> Newsgroups: perl.beginners To: Sent: Thursday, September 13, 2007 11:55 PM Subject: Re: working with 3-dimensional array - Original Message - From: "Tim McGeary" <[EMAI

Re: working with 3-dimensional array

2007-09-13 Thread Chris Charley
- Original Message - From: "Tim McGeary" <[EMAIL PROTECTED]> Hi all, I'm trying to read in two file sets of library records, compare a regex that I find in different lines of each set of records, and then copy one whole line over to the other when a match is found. ? To do this

Re: working with 3-dimensional array

2007-09-13 Thread [EMAIL PROTECTED]
On Sep 13, 4:23 pm, [EMAIL PROTECTED] (Tim McGeary) wrote: > Hi all, > > I'm trying to read in two file sets of library records, compare a regex > that I find in different lines of each set of records, and then copy one > whole line over to the other when a match is found. > > To do this, I am tryi

Re: working with 3-dimensional array

2007-09-13 Thread Tom Phoenix
On 9/13/07, Tim McGeary <[EMAIL PROTECTED]> wrote: > I am trying to use a 3-dimensional array: > [fileset][record][line] I think you're telling us that the first dimension tells which fileset something is or was found in, the second tells which record within that fileset, and the third tells whic

working with 3-dimensional array

2007-09-13 Thread Tim McGeary
Hi all, I'm trying to read in two file sets of library records, compare a regex that I find in different lines of each set of records, and then copy one whole line over to the other when a match is found. To do this, I am trying to use a 3-dimensional array: [fileset][record][line] I think t