I'm trying to create an array of hashes, but I'm having trouble looping through the array. I have tried this code, but it does not work:
for ($i = 0; $i<@pattern; $i++){
while(($k, $v)= each $pattern[$i]){
debug(" $k: $v");
}
}
|
I'm trying to create an array of hashes, but I'm having trouble looping through the array. I have tried this code, but it does not work:
|
||||
|
|
|
First, why aren't you
And I know you aren't because I'm pretty sure you'd get some nice error messages out of Second, why aren't you doing this:
That loops through every element in Third, for the love of Larry Wall, please declare your variables with Fourth, and last, your array stores references to hashes, not hashes. If they stored hashes, your code would be wrong because hashes start with
Or, your way:
|
|||||||||||
|
|
Try this instead:
The biggest problem with what you were trying was
Also, beware of the each function, it can leave the hash iterator in an incomplete state. |
|||||||||||
|
|
See the documentation for the perl data structures cookbook:
|
|||
|
|