Re: utf8_heavy noise

2003-06-22 Thread Daniel Yacob
> For your information: > Unicode 4.0 adds two sets of decimal digits. :-) > 1946..194F; Nd # [10] LIMBU DIGIT ZERO..LIMBU DIGIT NINE > 104A0..104A9 ; Nd # [10] OSMANYA DIGIT ZERO..OSMANYA DIGIT NINE Thanks! I wasn't aware of these additions. I gave them a try but it appears Perl 5.8

utf8_heavy noise

2003-06-21 Thread Daniel Yacob
Greetings, I've submitted to CPAN the module Convert::Digits which provides a conversion service for digits found in the scripts of unicode. It works fine as best as I can tell but non-fatal errors do appear from utf8_heavy.pl when working on scripts outside the BMP: Use of uninitialized value

UTF8 flag unsets in inheritted methods

2003-03-14 Thread Daniel Yacob
Greetings, I've run into another issue with utf-8 support that I thought should be reported here. Apologies if the issue has already been reported. I've found that the utf8 flag gets turned off for a string when it is returned from an inherited method. That is; for an object of class A::B, where

Re: Looping with Unicode

2003-03-07 Thread Daniel Yacob
>> Can something be set in the script to make it work as expected? >> >> An observation; UTF-8 keys in a hash can be defined without >> quotation: >> >> %myHash =( >>=> "this", >>=> "that", >> : : : >> ); >> >> but later the keys must be referenced in quoted form. T

Looping with Unicode

2003-03-06 Thread Daniel Yacob
Greetings, I seem to remember in the past, possibly with a development version of Perl, that unicode chars in utf-8 worked fine as loop iterators, as per: foreach (..) { do something } where and are single characters in utf-8. With Perl 5.8.0 the loop cycles only once. Is this a bug or by d

localized pod?

2003-01-27 Thread Daniel Yacob
I don't suppose there is a way with POD to provide the manual data based on locale? I'm thinking along the lines of having translations of the instructions in several languages, each language block being marked with a POD command and locale identifier arg. If its not a part of the POD system, is

2 Suprises w/5.8.0

2002-07-31 Thread Daniel Yacob
Greetings, I've finally installed 5.8.0 and started putting it to good use but hit two surprises. Hopefully I've just overlooked something in the perlunicode and perluniintro man pages and these aren't actual bugs. I expected that I could work simply with - # myScript.pl us

Re: perlunitut - feedback appreciated

2001-11-22 Thread Daniel Yacob
I've just been able to look thru the document during the last few days, it is most impressive. My attention gets taken away by features that I didn't know about, such as: To create Unicode literals, use the \x{...} notation in doublequoted strings: my $smiley = "\x{263a}"; I've just trie

UTF8 Terminal Detection

2001-11-08 Thread Daniel Yacob
Greetings, Is there a way to detect if the terminal that a script is running in can display UTF8 text? thanks, /Daniel

Two Unicode Support Issues

1999-12-09 Thread Daniel Yacob
Greetings All, I encountered a case where utf8 did not work as expected and thought I should report it here. The problem occured with the 5_62 development release: #!/usr/bin/perl use utf8; foreach $i (a..b) { print "$i\n"; } __END__ the above worked fine of course, it is when I changed