The leading seminar for Affiliate Marketing on the Internet. logo

internet.com
Join the free
WDVL newsletter!

home

Adding to and deleting from an associative array

Adding to and deleting from an associative array

  • Like list arrays, associative arrays can be modified internally. The most common function, other than defining an associative array, is adding to it. Adding to an associative array simply involves telling Perl which key and value to add using the format:

    $ARRAY_NAME{'key'} = "value"; 
    

  • or, using our example above:

    $CLIENT_ARRAY{'favorite_candy'} = "Hershey's with Almonds"; 
    

  • %CLIENT_ARRAY now includes full_name, phone, age and favorite_candy along with their associated values.

  • Similarly, you can easily use the delete function to delete a key/value pair in an associative array. The delete function follows the syntax:

    delete ($ASSOCIATIVE_ARRAY_NAME{'key'}); 
    

  • or for our %CLIENT_ARRAY example:

    delete ($CLIENT_ARRAY{'age'}); 
    

  • Thus, %CLIENT_ARRAY would contain only full_name, phone, and favorite_candy.

Additional Resources:

Using the keys and values functions
Table of Contents
Manipulating Strings in Perl

Up to => Home / Authoring / Scripting / Tutorial

Instantly look up a "techie" word using Webopedia!!


internet.com
e-commerce
WebDeveloper Network



Copyright 1999 internet.com Corporation. Legal Notices. Privacy Policy.

www.internet.com