in reply to Re^2: uninitialized string variable
in thread uninitialized string variable
Yes, I am reasonably new to Perl, I am using Text::CSV::Slurp. The @ is used because $data is returned as a reference to an array of hashes, so:
@$data[0] -> {"data"}
Returns the first hash inside data, and points to the value associated with the key "data". *unless my understanding is wrong*
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: uninitialized string variable
by suhailck (Friar) on Aug 13, 2010 at 17:57 UTC | |
by JavaFan (Canon) on Aug 13, 2010 at 18:17 UTC | |
by choroba (Cardinal) on Aug 13, 2010 at 22:04 UTC | |
by jjw92 (Novice) on Aug 13, 2010 at 22:21 UTC | |
by JavaFan (Canon) on Aug 14, 2010 at 07:40 UTC | |
|
Re^4: uninitialized string variable
by JediWizard (Deacon) on Aug 14, 2010 at 02:38 UTC |