in reply to uppercase/lowercase in a single expression
Enjoy,use Tie::File; tie @array, 'Tie::File', "./text_file"; foreach (@array){ tr/[a-zA-Z]/[A-Za-z]/; } untie @array;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: uppercase/lowercase in a single expression
by monarch (Priest) on Sep 07, 2006 at 08:38 UTC |