Re: array of hashrefs (nested)
From: Roy Johnson (rjohnson_at_shell.com)
Date: 10/27/03
- Next message: Roy Johnson: "Re: how to do something"
- Previous message: J. Gleixner: "Re: Perl module for analyzing log files?"
- In reply to: monkeys paw: "array of hashrefs (nested)"
- Next in thread: James E Keenan: "Re: array of hashrefs (nested)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 27 Oct 2003 10:14:33 -0800
You are using a reference to a global variable, @tags, which you are
overwriting each pass through the loop.
use strict;
would have helped. Then you would have known to declare it as "my" and
it probably would have given you the results you were expecting.
VAR1 is Dumper's name for the reference to @tags.
- Next message: Roy Johnson: "Re: how to do something"
- Previous message: J. Gleixner: "Re: Perl module for analyzing log files?"
- In reply to: monkeys paw: "array of hashrefs (nested)"
- Next in thread: James E Keenan: "Re: array of hashrefs (nested)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|
|