in reply to Re^3: Tie::File failing with Unicode/UTF-8 encoding?
in thread Tie::File failing with Unicode/UTF-8 encoding?
Hello, HellenCr.
I have read Unk's post at stackoevrflow. This is not trivial problem for me having been troubled and struggled with encoding/decoding issue for a long time. It seems Glu monks not noticing this thread...
Unk says
1. Encode manually before handing off to the tied array 2. Figure out what the issue is with Tie::FileNo 1 must be like mine, wrapping Tie::File with accessor methods. For No.2, I wish some superior monks pursuit whether it is really seek problem, as Unk says. And there could be No.3 using DB_File module.
Referenced page written in Japanese. Filter_Push seems working fine for me... but it is really greek for me.#!/usr/bin/perl # DB_File example from http://blog.livedoor.jp/dankogai/archives/51500 +530.html use 5.010; use strict; use warnings; use utf8; use Fcntl; use DB_File; use DBM_Filter; my @Tied; my $Filename='087.txt'; my $db = tie @Tied, 'DB_File', $Filename, O_CREAT | O_RDWR, 0644, $DB_ +RECNO; $db->Filter_Push('encode' => 'UTF-8'); binmode STDOUT,':encoding(UTF-8)'; my $i =0; while (<DATA>) { chomp; $Tied[$i] = $_; ++$i; } # end while (<DATA>) $i =0; foreach (@Tied) { say "$i $Tied[$i]" if /τ/; #greek letter... ++$i; } # end foreach (@Tied) $db->Filter_Pop(); untie $Filename; __DATA__ your greek input
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Tie::File failing with Unicode/UTF-8 encoding?
by HelenCr (Monk) on Nov 07, 2012 at 10:29 UTC | |
by remiah (Hermit) on Nov 08, 2012 at 10:29 UTC |