Re: Remove a specific element from an Array

2007-07-09 Thread yaron
Detected Subject: Remove a specific element from an Array Hey Guys, I am a new bie to this Group. I have a Problem. I want to remove an element from an array whose index i dont know. -- #!/usr/bin/perl -w

Re: Remove a specific element from an Array

2007-07-09 Thread Paul Lalli
On Jul 9, 3:43 am, [EMAIL PROTECTED] (Sumit) wrote: > I am a new bie to this Group. > I have a Problem. > I want to remove an element from an array whose index i dont know. What, exactly, was wrong with all the answers you got in comp.lang.perl.misc? Posting a duplicate message to another forum

Re: Remove a specific element from an Array

2007-07-09 Thread D. Bolliger
Sumit am Montag, 9. Juli 2007 09:43: > Hey Guys, Hi Sumit > I am a new bie to this Group. > I have a Problem. > I want to remove an element from an array whose index i dont know. >--- > > #!/usr/bin/perl -w > use strict; use warnings; # additionaly > my @updateNames = (); >

Re: Remove a specific element from an Array

2007-07-09 Thread thomas polnik
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello Sumit, perhaps it would be better, if you use a hash for updateNames. - -- snip -- #!/usr/bin/perl use strict; use warnings; use Data::Dumper;# I use this modul very often, it is very useful for debug my %updateNames; my @tempArr; # fill the

Remove a specific element from an Array

2007-07-09 Thread Sumit
Hey Guys, I am a new bie to this Group. I have a Problem. I want to remove an element from an array whose index i dont know. -- #!/usr/bin/perl -w use strict; my @updateNames = (); my @tempArr = (); m