Szerkesztő:GumiBot/code16
Megjelenés
A(z) 16. kódú hibát javító kódrészlet
[szerkesztés]sub fix_16 { # Template with Unicode control characters
my ($error_code, $title_str, $text_str) = @_;
my $count = 0;
$count += $text_str =~ s/\x{200e}//gm;
$count += $text_str =~ s/\x{200b}//gm;
$count += $text_str =~ s/\x{feff}//gm;
$count or return ('Nincs unicode vezerlokarakter');
my $summary_str = $latin2->decode(
"Bot: $count unicode vezérlőkarakter törölve. (Hibakód: $error_code)"
);
return ($summary_str, $count, $text_str);
}