Web Developer's Virtual Library: Encyclopedia of Web Design Tutorials, Articles and Discussions


WDVL Newsletter

Active Server Pages
JSP/Java Servlets
Microsoft SQL Server
Daily Backup
Dedicated Servers
Streaming Audio/Video
24-hour Support    

jobs.webdeveloper.com

Hiermenus


e-commerce
Partner With Us















Developer Channel
FlashKit.com
JavaScript.com
JavaScriptSource
Developer Jobs
ScriptSearch
StreamingMediaWorld
Web Developer's Journal
Web Developer's Virtual Library
WebDeveloper.com
Webreference
Web Hosts
XMLfiles.com

internet.com
IT
Developer
Internet News
Small Business
Personal Technology

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers


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




Jupiter Online Media: internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and Jupiter Online Media

Jupitermedia Corporate Info


Legal Notices, Licensing, & Permissions, Privacy Policy.

Web Hosting | Newsletters | Tech Jobs | Shopping | E-mail Offers