Per esempio, match "nazione" in "" Internazionalizzazione", senza moduli aggiuntivi. E 'possibile nelle nuove versioni Perl (5.14, 5.15, ecc)?Come abbinare la stringa con diacritico in perl?
ho trovato una risposta! Grazie a tchrist
soluzione rigth con UCA match (thnx a https://stackoverflow.com/users/471272/tchrist).
# found start/end offsets for matched utf-substring (without intersections)
use 5.014;
use strict;
use warnings;
use utf8;
use Unicode::Collate;
binmode STDOUT, ':encoding(UTF-8)';
my $str = "Îñţérñåţîöñåļîžåţîöñ" x 2;
my $look = "Nation";
my $Collator = Unicode::Collate->new(
normalization => undef, level => 1
);
my @match = $Collator->match($str, $look);
if (@match) {
my $found = $match[0];
my $f_len = length($found);
say "match result: $found (length is $f_len)";
my $offset = 0;
while ((my $start = index($str, $found, $offset)) != -1) {
my $end = $start + $f_len;
say sprintf("found at: %s,%s", $start, $end);
$offset = $end + 1;
}
}
sbagliato (ma di lavoro) la soluzione da http://www.perlmonks.org/?node_id=485681
piece La magia di codice è: esempio
$str = Unicode::Normalize::NFD($str); $str =~ s/\pM//g;
codice:
use 5.014;
use utf8;
use Unicode::Normalize;
binmode STDOUT, ':encoding(UTF-8)';
my $str = "Îñţérñåţîöñåļîžåţîöñ";
my $look = "Nation";
say "before: $str\n";
$str = NFD($str);
# M is short alias for \p{Mark} (http://perldoc.perl.org/perluniprops.html)
$str =~ s/\pM//og; # remove "marks"
say "after: $str";¬
say "is_match: ", $str =~ /$look/i || 0;
+1 per l'esempio peloso. – Bojangles
non so se c'è qualche sostegno diretto, ma si potrebbe canonicalize a Fully Scomposto, poi striscia tutti i caratteri con una 'unione' di proprietà (ISTR c'è una tale proprietà, anche se non sono sicuro di come si chiama) – tripleee
googe "perl rimuovi tutti i diacritici" molte partite che sembrano promettenti –