Help for this page

Select Code to Download


  1. or download this
    my @strings = qw(boy bird FALSE);
    @strings = map { /FALSE/ ? qq{"$_"} : () } @strings;
    print join q{,}, @strings;