in reply to Re: Splicing Arrays on pre-defined indices
in thread Splicing Arrays on pre-defined indices
my $line = "1!2!3!4!5!6!7!8!9"; # Original line read my @arr = split /!/, $line; my @indices = (2,5..8); #i need these indices to be sliced print join(" : ", @arr);#original splice (@arr,@indices,1); # something like this iam trying to achieve print "\n"; # i might be having 30 to 40 col of which i dont need 4 to 5, so its b +etter i slice 4 to 5 col's instead of considering 30 col's
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Splicing Arrays on pre-defined indices
by ikegami (Patriarch) on Jun 28, 2008 at 14:29 UTC | |
by harishnuti (Beadle) on Jun 28, 2008 at 15:27 UTC | |
by injunjoel (Priest) on Aug 15, 2008 at 23:55 UTC |