Encode::Detect - An Encode::Encoding subclass that detects the encoding of data


NAME

Encode::Detect - An Encode::Encoding subclass that detects the encoding of data

Back to Top


SYNOPSIS

  use Encode;
  require Encode::Detect;
  my $utf8 = decode("Detect", $data);

Back to Top


DESCRIPTION

This Perl module is an Encode::Encoding subclass that uses Encode::Detect::Detector to determine the charset of the input data and then decodes it using the encoder of the detected charset.

It is similar to Encode::Guess, but does not require the configuration of a set of expected encodings. Like Encode::Guess, it only supports decoding--it cannot encode.

Back to Top


SEE ALSO

Encode, the Encode::Encoding manpage, the Encode::Detect::Detector manpage

Back to Top


AUTHOR

John Gardiner Myers <jgmyers@proofpoint.com>

Back to Top


SUPPORT

For help and thank you notes, e-mail the author directly. To report a bug, submit a patch, or add to the wishlist please visit the CPAN bug manager at: http://rt.cpan.org

Back to Top

 Encode::Detect - An Encode::Encoding subclass that detects the encoding of data