Help for this page

Select Code to Download


  1. or download this
      my @quotes = $keyword =~ s/"([^"]*)?"//;
      my @keys = split(/ /, $keyword);
    
  2. or download this
     
      my @keys =grep length, split(/ /, $keyword);
    
  3. or download this
     
      my @keys = split(" ", $keyword);