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