logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Author

       John Gardiner Myers <jgmyers@proofpoint.com>

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.

Name

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

See Also

       Encode, Encode::Encoding, Encode::Detect::Detector

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

perl v5.40.0                                       2024-10-20                                Encode::Detect(3pm)

Synopsis

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

See Also