in reply to Re^6: Use module only if it is in usein thread Use a module only if it is in use
require Text::Unidecode if $asciify; while ($line = <F>) { chomp($line); $line = Text::Unidecode::unidecode($line) if $asciify; ... } [download]