Help for this page

Select Code to Download


  1. or download this
    my $string = '+book +dog +cat';
    
  2. or download this
    "+book", "+dog", "+cat"
    
  3. or download this
    my $string = '+book +dog +cat';
    my @raw_params = split /\s+/, $string;
    my @quoted_params = map { qq{"$_"} } @raw_params;
    my $quoted_params_string = join ", ", @quoted_params;
    print $quoted_params_string;