Return-Path: Delivered-To: apmail-perl-embperl-archive@www.apache.org Received: (qmail 15027 invoked from network); 1 Oct 2007 16:35:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Oct 2007 16:35:02 -0000 Received: (qmail 99435 invoked by uid 500); 1 Oct 2007 16:34:51 -0000 Delivered-To: apmail-perl-embperl-archive@perl.apache.org Received: (qmail 99427 invoked by uid 500); 1 Oct 2007 16:34:51 -0000 Mailing-List: contact embperl-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list embperl@perl.apache.org Received: (qmail 99416 invoked by uid 99); 1 Oct 2007 16:34:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Oct 2007 09:34:51 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [198.108.95.9] (HELO mozart.merit.edu) (198.108.95.9) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Oct 2007 16:34:49 +0000 Received: from outtolunch.merit.edu (outtolunch.merit.edu [198.108.60.177]) by mozart.merit.edu (MOS 3.8.2-GA) with ESMTP id AQK95504; Mon, 1 Oct 2007 12:33:09 -0400 (EDT) Date: Mon, 1 Oct 2007 12:33:09 -0400 (EDT) From: Todd White To: Gerald Richter - ECOS GmbH cc: bkim@tamu.edu, embperl@perl.apache.org Subject: RE: Re: $cnt doesn't work for me as advertised In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-351212254-1191256389=:5356" X-Virus-Checked: Checked by ClamAV on apache.org ---559023410-351212254-1191256389=:5356 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Thank you, Gerald! That work-around works perfectly! Here is the link to prove it: http://www.merit.edu/~tmwhite/test/cnt.epl And here is the updated code that now works exactly as I need: ############################################################### $cnt test [- $maxcol =3D 3; -] [+ $maxcol +]

[- @test_arr =3D ('A', 'B', 'C', 'D', 'E', 'F', 'G'); -]
[+ $test_arr[$row*$maxcol+$col] +]
############################################################### Thank you. --Todd On Sat, 29 Sep 2007, Gerald Richter - ECOS GmbH wrote: > Hi, > > $cnt is not (yet) implement in Embperl 2.x (it was in 1.x). > Documentation is a little bit out of date on this. > > It should work to use > > [+ $arr[$row*$maxcol+$col] +] > > Gerald > > > ------------------------------------------------------------------------ > Besuchen Sie unseren Messestand auf der SYSTEMS vom 23. - 26.10. in > M=FCnchen, Halle B3, Stand 425 www.ecos.de/messen-events/systems-2007.htm= l > ------------------------------------------------------------------------ > Gerald Richter ECOS electronic communication services GmbH > ******************* SECURING YOUR NETWORK ******************** > > Post: Tulpenstrasse 5 D-55276 Dienheim b. Mainz > E-Mail: richter@ecos.de Voice: +49 6133 939-122 > WWW: http://www.ecos.de Fax: +49 6133 939-333 > > Sitz der Gesellschaft: Dienheim; AG Mainz HRB 6889; GF: W.Heck,G.Richter > ------------------------------------------------------------------------ > > > > > -----Original Message----- > > From: Todd White [mailto:tmwhite@merit.edu] > > Sent: Thursday, September 27, 2007 2:23 PM > > To: Ben Kim > > Cc: embperl@perl.apache.org > > Subject: Re: $cnt doesn't work for me as advertised > > > > I shouldn't have to use $row and $col. And I shouldn't have > > to be working with an array of an array. > > > > --Todd > > > > > > On Wed, 26 Sep 2007, Ben Kim wrote: > > > > > On Wed, 26 Sep 2007, Todd White wrote: > > > > > > I think the $cnt does not work. > > > > > > You need to use $row and $col. I think it assumes array of array > > > (perldoc > > > perllol) for $col or $maxcol to work. > > > > > > [- > > > @test_arr =3D (['A', 'B', 'C'], ['D', 'E', 'F'], ['G', 'H'] ); -] > > > > > >
[+ $test_arr[$row][$col] +]
> > > > > > ABC > > > DEF > > > GH > > > > > > If you set $maxcol =3D 2, then it will be AB DE GH > > > > > > I guess even if $cnt is not broken, it will not work for 2 > > dimensional arrays. > > > Please correct me if I'm wrong. > > > > > > > > > Regards, > > > > > > Ben K. > > > Developer > > > http://benix.tamu.edu > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org > > For additional commands, e-mail: embperl-help@perl.apache.org > > > > > > ** Virus checked by BB-5000 Mailfilter ** > > !DSPAM:416,46fba258126381152355010! > > > > > > ** Virus checked by BB-5000 Mailfilter ** > ---559023410-351212254-1191256389=:5356 Content-Type: text/plain; charset=us-ascii --------------------------------------------------------------------- To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org For additional commands, e-mail: embperl-help@perl.apache.org ---559023410-351212254-1191256389=:5356--