Help for this page

Select Code to Download


  1. or download this
    $string =~ s/^\s+//;
    $string =~ s/\s+$//;
    
  2. or download this
    @fi = split(/\s+/, $nextline);
    
  3. or download this
    while(@fi[0] eq'')
    {
    ...
    
         my @fi = split.....
    }