IO::Filter::lc - Convert all characters in input to lowercase


NAME

IO::Filter::lc - Convert all characters in input to lowercase


SYNOPSIS

  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


DESCRIPTION


METHODS

$fio = new IO::Filter::lc ($io, $mode);


BUGS


FILES


AUTHORS

Richard Jones (rich@annexia.org)


COPYRIGHT

Copyright (C) 2001 Richard Jones (rich@annexia.org)


SEE ALSO

the IO::Filter(3) manpage, perl(1).

 IO::Filter::lc - Convert all characters in input to lowercase