7 Einträge, 1 Seite |
binmode STDOUT, ':encoding(UTF-8)';
1
2
3
4
5
6
7
my $content = $response->content;
my $encoding = "utf8"; # assume this is the default
if($content =~ /encoding="([^"]+)"/) {
$encoding = $1;
}
$content = $response->decoded_content((charset => $encoding));
print $content;
$response->decoded_content;
7 Einträge, 1 Seite |