Re: Problem with foreach loop

2010-09-27 Thread John W. Krahn
HACKER Nora wrote: Hello list, Hello, Could someone please explain why this test script: my @arr1 = qw(one two three); my @arr2 = qw(1 2 3); foreach my $arr1 ( @arr1 ) { print "Arr1: $arr1\n"; foreach my $arr2 ( @arr2 ) { print "Arr2: $arr2\n";

Re: Problem with foreach loop

2010-09-27 Thread Rob Coops
On Mon, Sep 27, 2010 at 9:19 AM, HACKER Nora wrote: > Hello list, > > Could someone please explain why this test script: > > my @arr1 = qw(one two three); > my @arr2 = qw(1 2 3); > > foreach my $arr1 ( @arr1 ) { >print "Arr1: $arr1\n"; >foreach my $arr2 ( @arr2 ) { >

Re: Problem with foreach loop

2010-09-27 Thread Shlomi Fish
Hi Nora, On Monday 27 September 2010 09:19:46 HACKER Nora wrote: > Hello list, > > Could someone please explain why this test script: > > my @arr1 = qw(one two three); > my @arr2 = qw(1 2 3); > > foreach my $arr1 ( @arr1 ) { > print "Arr1: $arr1\n"; > foreach my $arr2 ( @arr2 )

Re: Problem with foreach

2005-12-12 Thread John W. Krahn
Andrej Kastrin wrote: > John W. Krahn wrote: > >> Andrej Kastrin wrote: >>> >>> I want to count words in the following file: >>> -- >>> ID- some number >>> TI- some text BB >>> AB- some text A BB >>> AU- some text >>> >>> ID- some number >>> TI- some GGG text >>> AB- s

Re: Problem with foreach

2005-12-12 Thread Andrej Kastrin
John W. Krahn wrote: Andrej Kastrin wrote: Hello dears, Hello, I want to count words in the following file: -- ID- some number TI- some text BB AB- some text A BB AU- some text ID- some number TI- some GGG text AB- some text GGG AU- some text ID- som

Re: Problem with foreach

2005-12-12 Thread John W. Krahn
Andrej Kastrin wrote: > Hello dears, Hello, > I want to count words in the following file: > -- > ID- some number > TI- some text BB > AB- some text A BB > AU- some text > > ID- some number > TI- some GGG text > AB- some text GGG > AU- some text > > ID- some number >

Re: Problem with Foreach in If Statement...

2005-06-04 Thread Frank Lee
please try this one: #tested in linux #!/usr/bin/perl -w use strict; my @names = qw( fred barney betty wilma dino ); print "Enter some numbers 1 to 5, one per line, then press ctrl D:\n"; chomp (my @numbers = ); foreach (@numbers){ if ($_ < 6){ print "$names[$_ - 1]\n"; }else{

Re: Problem with Foreach in If Statement...

2005-06-04 Thread John W. Krahn
Hakim Singhji wrote: Hi All, Hello, This is my first post at beginners. I am working with Learning Perl (Llama!) and I like to tweak some of the problems and create more creative solutions to some things. I cannot figure out why this is not working. Can anyone point out an error in my code.

Re: problem with foreach and while with array

2002-08-28 Thread Priss
Thank you Connie for helping me on this, it was fixed by below comment you made :))) >> SOA: while () >> { >> chomp; > >You don't need to chomp it, or you don't need $/ at >last of the next line. Priss __ Do You Yahoo!? Everything you'll

Re: problem with foreach and while with array

2002-08-28 Thread Connie Chan
> > Wonder if someone could help me, I am trying to write > a script to pulls out all the machine names from a > revese DNS file, some how, my script will only print > out the machine names with 1.x.x.in-addr.arpa > > $nslookup = '/usr/local/bin/nslookup'; > $dig = '/usr/local/bin/dig'; >