Help for this page

Select Code to Download


  1. or download this
    my @a = qw/x y z
    a b c
    ...
          splice @a, 0, 0, "#";
       }
    }
    
  2. or download this
    @a = map {$_ eq "a" ? ("#","a") : $_} @a;