RE: Array of Array refs

2007-05-30 Thread Andrew Curry
: Array of Array refs On May 29, 6:06 am, [EMAIL PROTECTED] (Paul Lalli) wrote: > On May 29, 4:58 am, [EMAIL PROTECTED] (Brian) wrote: > > > On May 28, 6:14 pm, [EMAIL PROTECTED] (Paul Lalli) wrote: > > > > > oh yes, more important than all that minutiae... the push did >

Re: Array of Array refs

2007-05-29 Thread Brian
On May 29, 6:06 am, [EMAIL PROTECTED] (Paul Lalli) wrote: > On May 29, 4:58 am, [EMAIL PROTECTED] (Brian) wrote: > > > On May 28, 6:14 pm, [EMAIL PROTECTED] (Paul Lalli) wrote: > > > > > oh yes, more important than all that minutiae... the push did not > > > > work for me in the working code. > >

Re: Array of Array refs

2007-05-29 Thread Chas Owens
On 29 May 2007 13:04:42 -0700, Paul Lalli <[EMAIL PROTECTED]> wrote: On May 29, 3:21 pm, [EMAIL PROTECTED] (Dr.Ruud) wrote: > Brian schreef: > > > Changing @ to $ is confusing... > > Huh? @ means array, $ means scalar; there is nothing to change. Presumably, he meant that @array identifies the e

Re: Re: Array of Array refs @ 1180470274

2007-05-29 Thread Johan Meskens CS3 jmcs3
Intrah onat Diria .. , ** wrote "Revera y": > > > Changing @ to $ is confusing... this is different in perl6 , the following could be unreadable @ 1180470350 ::: hbeingspiel , 0::- , 1::',| , 0::| , 1::ver

Re: Array of Array refs

2007-05-29 Thread Paul Lalli
On May 29, 3:21 pm, [EMAIL PROTECTED] (Dr.Ruud) wrote: > Brian schreef: > > > Changing @ to $ is confusing... > > Huh? @ means array, $ means scalar; there is nothing to change. Presumably, he meant that @array identifies the entire array, while $array[0] identifies the first element of the array,

Re: Array of Array refs

2007-05-29 Thread Dr.Ruud
Brian schreef: > Changing @ to $ is confusing... Huh? @ means array, $ means scalar; there is nothing to change. -- Affijn, Ruud "Gewoon is een tijger." -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Array of Array refs

2007-05-29 Thread Paul Lalli
On May 29, 11:10 am, [EMAIL PROTECTED] (Paul Lalli) wrote: > On May 29, 10:16 am, [EMAIL PROTECTED] (Rob Dixon) wrote: > > > Brian wrote: > > I agree with you Brian. I have been posting on this list for around four > > years, and rarely have I seen 'help' that is expressed with such vitriol > > as

Re: Array of Array refs

2007-05-29 Thread Paul Lalli
On May 29, 10:16 am, [EMAIL PROTECTED] (Rob Dixon) wrote: > Brian wrote: > I agree with you Brian. I have been posting on this list for around four > years, and rarely have I seen 'help' that is expressed with such vitriol > as Paul's has been. I'm truly sorry you feel that way, Brian. My respons

Re: Array of Array refs

2007-05-29 Thread Rob Dixon
Brian wrote: Paul Lalli wrote: Brian wrote: my variable names end with A for array and H for hash, Pointless. Variable names in Perl identify what kind of variable they are. @ for arrays, % for hashes. [ ] for accessing an element of a hash, { } for accessing element of a hash. no, I

Re: Array of Array refs

2007-05-29 Thread Paul Lalli
On May 29, 4:58 am, [EMAIL PROTECTED] (Brian) wrote: > On May 28, 6:14 pm, [EMAIL PROTECTED] (Paul Lalli) wrote: > > > > > > oh yes, more important than all that minutiae... the push did not > > > work for me in the working code. > > > The push worked absolutely fine. It just didn't do what you w

Re: Array of Array refs

2007-05-29 Thread Paul Lalli
On May 29, 5:30 am, [EMAIL PROTECTED] (Brian) wrote: > On May 28, 6:04 pm, [EMAIL PROTECTED] (Paul Lalli) wrote: > > > On May 28, 3:22 pm, [EMAIL PROTECTED] (Brian) wrote: > > > > my variable names end with A for array and H for hash, > > > Pointless. Variable names in Perl identify what kind of v

Re: Array of Array refs

2007-05-29 Thread Brian
On May 28, 6:04 pm, [EMAIL PROTECTED] (Paul Lalli) wrote: > On May 28, 3:22 pm, [EMAIL PROTECTED] (Brian) wrote: > > > my variable names end with A for array and H for hash, > > Pointless. Variable names in Perl identify what kind of variable they > are. @ for arrays, % for hashes. [ ] for acces

Re: Array of Array refs

2007-05-29 Thread Brian
On May 28, 6:14 pm, [EMAIL PROTECTED] (Paul Lalli) wrote: > > > oh yes, more important than all that minutiae... the push did not > > work for me in the working code. > > The push worked absolutely fine. It just didn't do what you wanted it > to. Learning how to parse your problem should be your

Re: Array of Array refs

2007-05-28 Thread Paul Lalli
On May 28, 3:26 pm, [EMAIL PROTECTED] (Brian) wrote: > On May 27, 9:00 pm, [EMAIL PROTECTED] (Brian) wrote: > > > > > > > Hi All- > > I am trudging through some DBI, XML, etc.. I had a problem and was > > baffled by how to get at array elements out of a series of pushed > > array refs. But, by si

Re: Array of Array refs

2007-05-28 Thread Paul Lalli
On May 28, 3:22 pm, [EMAIL PROTECTED] (Brian) wrote: > my variable names end with A for array and H for hash, Pointless. Variable names in Perl identify what kind of variable they are. @ for arrays, % for hashes. [ ] for accessing an element of a hash, { } for accessing element of a hash. > ye

Re: Array of Array refs

2007-05-28 Thread Brian
On May 27, 9:00 pm, [EMAIL PROTECTED] (Brian) wrote: > Hi All- > I am trudging through some DBI, XML, etc.. I had a problem and was > baffled by how to get at array elements out of a series of pushed > array refs. But, by simplifying the problem, I found that the syntax I > used was in error. her

Re: Array of Array refs

2007-05-28 Thread Brian
On May 27, 9:00 pm, [EMAIL PROTECTED] (Brian) wrote: > Hi All- > I am trudging through some DBI, XML, etc.. I had a problem and was > baffled by how to get at array elements out of a series of pushed > array refs. But, by simplifying the problem, I found that the syntax I > used was in error. her

Re: Array of Array refs

2007-05-28 Thread Paul Lalli
On May 28, 12:00 am, [EMAIL PROTECTED] (Brian) wrote: > I am trudging through some DBI, XML, etc.. I had a problem and was > baffled by how to get at array elements out of a series of pushed > array refs. What's to be baffled by? Have you read: perldoc perlreftut perldoc perllol perldoc perlds

Re: Array of Array refs

2007-05-28 Thread Rob Dixon
Brian wrote: Hi All- I am trudging through some DBI, XML, etc.. I had a problem and was baffled by how to get at array elements out of a series of pushed array refs. But, by simplifying the problem, I found that the syntax I used was in error. here is the small sample, already debugged. Hope th

Array of Array refs

2007-05-28 Thread Brian
Hi All- I am trudging through some DBI, XML, etc.. I had a problem and was baffled by how to get at array elements out of a series of pushed array refs. But, by simplifying the problem, I found that the syntax I used was in error. here is the small sample, already debugged. Hope this helps someon