Help for this page

Select Code to Download


  1. or download this
    
    my $ns = '';
    my @a = qw(one two 3 $ns five);
    s/(\$.*)/$1/ee foreach @a;
    
  2. or download this
    my @a = grep {s/^''$//;1} qw(one two 3 '' four five);