Help for this page

Select Code to Download


  1. or download this
    my %chartran = (
       "\xE1" => 'aacute',
    ...
        s/($re)/$chartran{$1}/g;
        print;
    }
    
  2. or download this
    use HTML::Entities qw( encode_entities );
    
    while (<VRUN>) {
        print encode_entities($_);
    }