ultranerds has asked for the wisdom of the Perl Monks concerning the following question:
my $result = $ebay->submitRequest( "GetOrders",
{
DetailLevel => "ReturnAll",
ErrorLevel => "1",
SiteId => "1",
Verb => "GetOrders",
NumberOfDays => 2,
OrderRole => "Seller",
OrderStatus => "Completed",
IncludeFinalValueFee => 1
});
use Devel::Peek;
use Encode;
my $str = $add->{address};
Dump $str;
SV = PV(0x28fa060) at 0x15df1f0 REFCNT = 1 FLAGS = (PADMY,POK,IsCOW,pPOK,UTF8) PV = 0x2d91730 ", Mario, Seestra\303\237e 12, Rodgau, 123456, Deutschland"\0 UTF8 ", Mario, Seestra\x{df}e 12, Rodgau, 123456, Deutschland" CUR = 57 LEN = 72 COW_REFCNT = 1 FOO: , Mario, Seestraße 12, Rodgau, 123456, Deutschland
Mario, Seestraße 12, Rodgau, 123456, Deutschland
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Encoding "fun" again
by choroba (Cardinal) on Aug 05, 2015 at 12:35 UTC |