Help for this page

Select Code to Download


  1. or download this
    $_ = "  one two three    four five six";
    @ary = split;
    print $ary[3];
    
  2. or download this
    $str = "  one two three    four five six";
    $str =~ s/^\s+//;  # remove leading spaces
    
    @ary = split /\s+/, $str;
    print $ary[3];