Revision 5ab8e5d5
Von Jan Büren vor mehr als 7 Jahren hinzugefügt
SL/SEPA/XML.pm | ||
---|---|---|
72 | 72 |
|
73 | 73 |
map { $text =~ s/$_/$special_chars{$_}/g; } keys %special_chars; |
74 | 74 |
|
75 |
# for all other non ascii chars 'OLÉ S.L.' and 'Årdberg AB'! |
|
76 |
use Text::Unidecode qw(unidecode); |
|
77 |
$text = unidecode($text); |
|
78 |
|
|
75 | 79 |
return $text; |
76 | 80 |
} |
77 | 81 |
|
Auch abrufbar als: Unified diff
SEPA-Export ISO20022 konforme Feldinhalte
Das _replace_special_chars kümmert sich perfekt um
deutsche Umlaute, allerdings gibt es im SEPA-Raum einige
Firmenname die andere Umlaute/Sonderzeichen behalten
(s.a. perldoc Text::Unidecode).