|
IO::Filter::uc - Convert all characters in input to uppercase |
IO::Filter::uc - Convert all characters in input to uppercase
use IO::Filter::uc;
$io = ...; # any IO handle $fio = new IO::Filter::uc ($io, "r"); # then you can read uppercase only bytes from $fio
$io = ...; # any IO handle $fio = new IO::Filter::uc ($io, "w"); # write bytes to $fio, they are written in uppercase to $io
Richard Jones (rich@annexia.org)
Copyright (C) 2001 Richard Jones (rich@annexia.org)
the IO::Filter(3) manpage, perl(1).
|
IO::Filter::uc - Convert all characters in input to uppercase |