in reply to Re^3: question about Encode::decode('iso-8859-1', ...)
in thread question about Encode::decode('iso-8859-1', ...)
Don't think so. Could you provide an example?
For "any encoding other than US-ASCII and iso-8859-1" to matter while decoding, you'd need wide characters, in which case Perl will croak with "Wide character in subroutine entry at .../Encode.pm line..." before returning anything. Any non-wide characters will simply be treated as iso-8859-1, because decode('iso-8859-1',...) is telling Perl they are.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: question about Encode::decode('iso-8859-1', ...)
by ikegami (Patriarch) on Mar 07, 2009 at 12:36 UTC | |
by Anonymous Monk on Mar 07, 2009 at 12:58 UTC | |
by ikegami (Patriarch) on Mar 07, 2009 at 22:28 UTC |