The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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

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

1 POD Error

The following errors were encountered while parsing the POD:

Around line 130:

=back doesn't take any parameters, but you said =back 4