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
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
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 = ();
>
-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
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