Hello!
I'm searching for your wisdom concerning an encoding issue. I'm reading a SQLite database with data encoded in utf-8. I need to the data order alphabetically and print them out. Here is the problem with accented characters. I am using the following code (it worked perfectly with an older SQLite DB without UTF8 data.
sub alpha_order{
$dbh = DBI->connect( "dbi:SQLite:files/database/data.db" ) || die "Can
+not connect: $DBI::errstr";
foreach my $row_db ( sort { deaccent($a->[2]) cmp deaccent($b->[2]) or
+ $a->[2] cmp $b->[2] } @$all_db_orderd ) {
my ($ID, $col1, $col2) = @$row_db;
#encoding in utf8 for printing
$col1= Encode::decode_utf8( $col1 );
$col2= Encode::decode_utf8( $col2 );
#Printing data out
}
}
sub deaccent {
my $in = $_[0];
return lc($in) unless ( $in =~ y/\xC0-\xFF// ); #short circuit if
+no upper chars
# translterate
$in =~ tr/ÀÁÂÃÄÅàáâãäåÇçÈÉÊËèéêëÌÍÎÏìíîïÒÓÔÕÖØòóôõöøÑñÙÚÛÜùúûüÝÿý/
+AAAAAAaaaaaaCcEEEEeeeeIIIIiiiiOOOOOOooooooNnUUUUuuuuYyy/;
$in =~ tr/'//d;
return lc($in);
}
As I said before, it worked well order->aäbcoö with my old SQLite DB (no UTF data). Now unfortunatly I populate the DB with UTF-data and when I read out the data from the DB ordering it with the above script, I can't order the data properly. I get something as order->abcoäö
Any idea what I am doing wrong? Encoding issues in Perl drive me crasy.... Welle
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|