| Paste number 67130: | miker_: is this expected output from naco_normalize? |
| Pasted by: | dbs |
| When: | 9 months, 1 week ago |
| Share: | Tweet this! | http://paste.lisp.org/+1FSQ |
| Channel: | #openils-evergreen |
| Paste contents: |
# Stripped out naco_normalize from FTS.pm
use OpenILS::
my $stuff = 'éèàôöç';
sub naco_normalize {
# body of subroutine copied here
}
print Unicode::Normalize::compose(NFD($stuff));
print "\n";
print naco_normalize($stuff);
print "\n";
print Unicode::Normalize::compose(naco_normalize($stuff));
print "\n";
print Unicode::Normalize::compose(Unicode::Normalize::reorder(naco_normalize($stuff)));
print "\n";
dan@denials:~/source/NACO$ perl naco.pl
éèàôöç
A A�A A�A�A�
A A�A A�A�A�
A A�A A�A�A�
This paste has no annotations.