Help for this page

Select Code to Download


  1. or download this
    my $string = "a b c d e f";
    my ($e1, $e2, $e3) = split /\s/, $string;
    
  2. or download this
    e1 = a
    e2 = b
    e3 = c
    
  3. or download this
    e3 = c d e f