Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: DBM modules and unicode keys

by ph0enix (Friar)
on Nov 23, 2002 at 09:03 UTC ( [id://215362]=note: print w/replies, xml ) Need Help??


in reply to DBM modules and unicode keys

Code with suggested modifications seems does not work I expected. Another suggestion or advice?

update: fixed code to be correctly working with unicode keys

#!/usr/bin/perl_parallel -w # For Emacs: -*- mode:cperl; mode:folding; coding:utf-8; -*- use strict; use utf8; use DB_File; use MLDBM qw (DB_File Storable); # ) use Fcntl; my $dbfile = 'database.utf'; my %data = (); # remove old file to be sure we have only new data unlink $dbfile if -f $dbfile; tie ( %data, 'MLDBM', $dbfile, O_CREAT | O_RDWR, 0666, $DB_BTREE ) || +die $!; # try to handle unicode by transforming to octets and back (tied %data)->filter_store_key( sub { $_ = encode('utf8', $_); } ); (tied %data)->filter_fetch_key( sub { $_ = decode('utf8', $_); } ); open DATA, '<:utf8', 'input.utf8' or die $!; while (<DATA>) { chomp; my ($key, $value) = split(':', $_, 2); $data{$key} = $value; } close DATA; # now we can obtain keys as unicode strings and no only octets print join(', ', keys %data), "\n"; untie %data; exit 0;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://215362]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-19 11:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found