Help for this page

Select Code to Download


  1. or download this
    (undef, my $foo) = split /:/;
    
  2. or download this
    $foo = (split/:/)[1];
    
  3. or download this
    @data = split/:/; $foo = $data[1];
    
  4. or download this
    ($foo) = /:(.*?):/;