Help for this page

Select Code to Download


  1. or download this
    ($foo, $match_I_want) = split /:/, $_, [2];
    
  2. or download this
    ($user, $foo{$user}) = split /:/, $_, [2];
    
  3. or download this
    ($user) = split /:/, $_, [1];
    ($temp, $foo{$user}) = split /:/, $_, [2];