RFC: Unicode::Property::XS
am 18.04.2008 10:20:11 von mindosHi, 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{L}/;
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.