in reply to Re: How to know to know if string is utf8 encoded or decoded.
in thread How to know to know if string is utf8 encoded or decoded.
Thank you for the reply. below is the line which seems to have issue. eval {$result = ConvertEncoding($string,"utf8",'MIME-Header')} #convertEncoding uses below code to decode string
eval { $unicode = Encode::decode($from,$str); }; if ($@) { &ConvertEncodingError("($from -> utf8)\n$@"); return $str; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to know to know if string is utf8 encoded or decoded.
by haj (Vicar) on Jul 26, 2019 at 17:55 UTC | |
by ikegami (Patriarch) on Jul 29, 2019 at 05:54 UTC | |
|
Re^3: How to know to know if string is utf8 encoded or decoded.
by Anonymous Monk on Jul 25, 2019 at 16:26 UTC | |
by 1nickt (Canon) on Jul 25, 2019 at 23:22 UTC | |
by Anonymous Monk on Jul 26, 2019 at 04:01 UTC | |
by 1nickt (Canon) on Jul 26, 2019 at 13:42 UTC | |
by Anonymous Monk on Jul 26, 2019 at 15:14 UTC | |
|