Paul Kraus <[EMAIL PROTECTED]> wrote:
: 
: I have a hash like this
: 
: $hash{key}=['item1','item2'];
: 
: Later on I want to push item3 into the array.

    You marked your question as high importance
and left out the question. Very strange.

    I assume your forgotten question is this.
Notice how a question ends with a question
mark.   :)


  How do I push 'item3' onto the array?

push @{ $hash{key} }, 'item3';


HTH,

Charles K. Clarkson
-- 
Head Bottle Washer,
Clarkson Energy Homes, Inc.
Mobile Home Specialists
254 968-8328



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to