Help for this page

Select Code to Download


  1. or download this
    @array = ('var1=x','var2=y','var3=z');
    
  2. or download this
    foreach (@array)
    {  my ($var,$val) = split(/=/,$_);
       $$var = $val;
    
    }