Posted on 2005-02-16 09:09:55-08 by dirk in response to 119
Re: Space character dropped in MARC::Charset
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).
Direct Responses: Write a response
Perl Weekly newsletter
A free weekly newsletter for people who are busy to read all the blogs. click here to check it out.