Help for this page

Select Code to Download


  1. or download this
    my @items;
    for my $record (@records) {
    ...
        }
        push @items, {%item};
    }
    
  2. or download this
    sub cleanup ($) {
        my $work = shift;
    ...
        $work =~ s/([^[:ascii:]]+)/unidecode($1)/ge;
        return $work;
    }