Re: arrayref

2008-07-08 Thread Rob Dixon
elavazhagan perl wrote: > Hi.. > > Thanks Rob,with ur code ,Now I can display all the countries with > regions.Now i would like to display only countries specific to the region. > We can split the data and assign into two different arrays.Let me know is > there any specific way to retrive the

RE: arrayref

2008-07-08 Thread Stewart Anderson
08 12:00 To: Dr.Ruud; [EMAIL PROTECTED] Cc: beginners@perl.org Subject: Re: arrayref Hi.. Thanks Rob,with ur code ,Now I can display all the countries with regions.Now i would like to display only countries specific to the region. We can split the data and assign into two different arrays.Let

Re: arrayref

2008-07-08 Thread elavazhagan perl
Hi.. Thanks Rob,with ur code ,Now I can display all the countries with regions.Now i would like to display only countries specific to the region. We can split the data and assign into two different arrays.Let me know is there any specific way to retrive the data ?? Thanks a lot #!

Re: arrayref

2008-07-08 Thread Dr.Ruud
"elavazhagan perl" schreef: > #Start > #! /usr/local/perl/bin > use strict; The shebang-line should be the first one. "use warnings;" is missing. -- Affijn, Ruud "Gewoon is een tijger." -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://l

Re: arrayref

2008-07-07 Thread Rob Dixon
elavazhagan perl wrote: > > Please have a glance on the following code and suggest me to purify it. > My requirement is when the user choose the region,I need to display the > countries specific to that regions. > I have been trying in both hash and array references.This one is for > arrayref.