Perl Encode.pm cannot decode string with wide character

前端 未结 3 706
走了就别回头了
走了就别回头了 2021-02-07 08:14

I was running a perl app which uses /opt/local/lib/perl5/5.12.4/darwin-thread-multi-2level/Encode.pm

and issues an error

Cannot deco

3条回答
  •  自闭症患者
    2021-02-07 08:37

    That error message is saying that you have passed in a string that has already been decoded (and contains characters above codepoint 255). You can't decode it again.

提交回复
热议问题