|
Posted by mindos@gmail.com on April 18, 2008, 4:20 am
Please log in for more thread options
Hi, there:
I wrote a module which uses fast and compressed lookup tables written
in XS supporting queries of unicode properties supported by Perl regex
now. For example:
my $code = ord($char);
IsL($code) is equal to $char =~ /\p/;
Few months ago, I was writing a line-breaking web script and found
though the regex supports of Unicode is great, it's slow for my
application. So I tried some acceleration methods and decided to write
one finally.
I thought about the name Unicode::Property::XS, but don't know whether
it's a appropriated one.
Thanks for advices.
Mindos.
|