FFRANK has asked for the wisdom of the Perl Monks concerning the following question:
Looking to some problem I've ran into many times without figuring out.
1) Take a string (or an array) of numbers of any length. 2) For each number, push the number to be an index value (in this case - a MD array).
Thanks much, best.#!/usr/bin/perl -w use strict; my @number = qw(2 3 4 5); # Get those values to index array element @MDarray[2][3][4][5] = #Do something;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Converting string into index MD array
by ikegami (Patriarch) on Jul 17, 2007 at 16:05 UTC | |
by dsheroh (Monsignor) on Jul 17, 2007 at 17:19 UTC | |
|
Re: Converting string into index MD array
by dsheroh (Monsignor) on Jul 17, 2007 at 15:49 UTC | |
by FFRANK (Beadle) on Jul 17, 2007 at 15:59 UTC |