Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: problem with Unicode::UCD

by djohnston (Monk)
on May 19, 2005 at 22:58 UTC ( [id://458821]=note: print w/replies, xml ) Need Help??


in reply to problem with Unicode::UCD

The source of the undefined value is the call to charblock. The docs for Unicode::UCD in regards to its charblock routine states, "If the argument is not a known character block, 'undef' is returned". A couple of solutions might be:
my $c = charblock($uChar) || $uChar; # default to original value # or my $c = charblock($uChar) or next; # skip iteration
(take note that I know next to nothing about unicode, though)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-25 16:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found