DuncIT has asked for the wisdom of the Perl Monks concerning the following question:
I've tried everything I can think of to access the nested contents. I need to know the ship_cost for the Fedex 2 Day service. How do I go about referencing that entry? Thank you so much for your help. Dunc$VAR1 = [ { 'ship_cost' => '80.84', 'ServiceType' => 'FIRST_OVERNIGHT', 'ship_note' => 'Overnight Delivery by 8:00 or 8:30 am', 'ship_tag' => 'First Overnight' }, { 'ship_cost' => '43.71', 'ServiceType' => 'PRIORITY_OVERNIGHT', 'ship_note' => 'Overnight Delivery by 10:30 am', 'ship_tag' => 'Priority Overnight' }, { 'ship_cost' => '38.74', 'ServiceType' => 'STANDARD_OVERNIGHT', 'ship_note' => 'Overnight Delivery by 3:00 pm', 'ship_tag' => 'Standard Overnight' }, { 'ship_cost' => '17.5', 'ServiceType' => 'FEDEX_2_DAY', 'ship_note' => '2 Business Days Delivery by 4:30 pm', 'ship_tag' => 'Fedex 2 Day' }, { 'ship_cost' => '13.63', 'ServiceType' => 'FEDEX_EXPRESS_SAVER', 'ship_note' => '3 Business Days Delivery by 4:30 pm', 'ship_tag' => 'Fedex Express Saver' }, { 'ship_cost' => '7.75', 'ServiceType' => 'FEDEX_GROUND', 'ship_note' => '1-5 Business Days Delivery day based on di +stance to destination', 'ship_tag' => 'Fedex Ground' } ];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: access array of hash?
by toolic (Bishop) on Mar 22, 2012 at 20:16 UTC | |
|
Re: access array of hash?
by Happy-the-monk (Canon) on Mar 22, 2012 at 20:21 UTC |