|
Here is a simple test that illustrates the problem, using only ASCII characters:
use MARC::Charset;
my $charset = MARC::Charset->new();
print $charset->to_marc8("one blank") . "\n";
print $charset->to_utf8("one blank") . "\n";
This produces the following output:
oneblank
one blank
So the problem exists only for to_marc8, not for to_utf8 (sorry, I should have checked this first).
|