in reply to Re: multidimenional hashes
in thread multidimenional hashes
The "qq" operator lets you use whatever you want to use as the delimiter of the string - I chose to use the pipe(|) since the string itself contains double quotes, *and* my other favoite choice for qq operator, {}. HTH.print qq|testing: $flat[1], $flong[1]\n|; print qq|testing: $fval{"39.750000"}{"-179.000000"}\n|; print qq|testing: $fval{"$flat[1]"}{"$flong[1]"}\n|;
|
|---|