Help for this page

Select Code to Download


  1. or download this
    my $str = join ', ', map { "'$_'" } split /,/, "CAT,DOG,BIRD,COW";    
    + # -> 'CAT', 'DOG', 'BIRD', 'COW'
    
  2. or download this
    my $str = "CAT,DOG,BIRD,COW";
    $str =~  s/\b/'/g;     # -> 'CAT','DOG','BIRD','COW'