Help for this page

Select Code to Download


  1. or download this
    fix_chars(@names);
    
  2. or download this
    my @names = fix_chars(@names);
    
  3. or download this
    sub fix_chars {
      my @fixed = @_;
    ...
      return @fixed;
    }