Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $line = q{   aaa bbb ccc ddd eee fff    };
    ( $line ) = split( ' ', $line, 1 );
    print qq{-->$line<--\n};
    
  2. or download this
    -->aaa bbb ccc ddd eee fff    <--