Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    c
    d
    e
    
  2. or download this
    my $description = 'a|b|c|d|e';
    print "$description\n";
    my (@new) = map {"$_\n"} split (/\|/, $description);
    print @new;