App-SpamcupNG
view release on metacpan or search on metacpan
lib/App/SpamcupNG/HTMLParse.pm view on Meta::CPAN
my $wanted = ( split( ':', $content ) )[1];
$wanted =~ s/^\s+//;
my @wanted = split( ';', $wanted );
if ( scalar(@wanted) > 1 ) {
my $encoding = lc( $wanted[0] );
my $charset = lc( $wanted[1] );
$charset =~ s/^\s+//;
$charset =~ tr/"//d;
my $not_useful = 'boundary';
if (
substr( $charset, 0, length($not_useful) ) eq
$not_useful )
{
$info{content_type} = $encoding;
$info{charset} = undef;
}
else {
$info{content_type} = $encoding;
$info{charset} = ( split( '=', $charset ) )[1];
}
}
else {
( run in 0.615 second using v1.01-cache-2.11-cpan-cc502c75498 )