Help for this page

Select Code to Download


  1. or download this
      $searchTexts[$i] =~ s/^\s+//;
      $searchTexts[$i] =~ s/\s+$//;
      print $searchTexts[$i]."\n";
    
  2. or download this
      @searchTexts[$i] =~ s/^\s+//;
      @searchTexts[$i] =~ s/\s+$//;
      print @searchTexts[$i]."\n";