Help for this page

Select Code to Download


  1. or download this
    my $str = "  foo bar baz  ";
    my @spl = split $str;
    print "@spl";
    
  2. or download this
    while ( <DATA> ) {
       split;
       #do something interesting;
    }