in reply to Re^2: Do I have a unicode problem, or is this something else?
in thread Do I have a unicode problem, or is this something else?

utf8 doesn't export any functions, at least not by default. Your second snippet doesn't run.

$ perl -e'use utf8; decode($_)' Undefined subroutine &main::decode called at -e line 1.

Replies are listed 'Best First'.
Re^4: Do I have a unicode problem, or is this something else?
by Steve_BZ (Chaplain) on Jun 10, 2010 at 17:45 UTC

    Hi ikegami,

    You're right I got the same error. I used use Encode in the end.

    Regards

    Steve