Skip Menu |

This queue is for tickets about the Convert-EastAsianWidth CPAN distribution.

Report information
The Basics
Id: 38533
Status: new
Priority: 0/
Queue: Convert-EastAsianWidth

People
Owner: Nobody in particular
Requestors: bkb [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



Subject: Japanese halfwidth / fullwidth katakana
Although Unicode::EastAsianWidth works correctly on Japanese katakana, this module doesn't seem to handle them. Are there any plans to add support for that, or could it be a bug? I attach a simple test script and sample output showing that Japanese symbols seem to be ignored.
Subject: ceaw.pl
#!/usr/local/bin/perl -l use warnings; use strict; use Convert::EastAsianWidth; use utf8; binmode STDOUT, "utf8"; my @test = qw/ 秒病気 バビブベボ かきくけこ カキクケコ がぎぐげご abcdefg abcdefg /; for (@test) { print to_fullwidth ($_); print to_halfwidth ($_); }
Subject: ceawout.txt
秒病気 秒病気 バビブベボ バビブベボ かきくけこ かきくけこ カキクケコ カキクケコ がぎぐげご がぎぐげご abcdefg abcdefg abcdefg abcdefg