Thread lc / uc und Umlaute (5 answers)
Opened by GoodFella at 2007-02-23 13:45

GoodFella
 2007-02-23 13:45
#74537 #74537
User since
2007-01-09
192 Artikel
BenutzerIn
[default_avatar]
Code (perl): (dl )
1
2
3
4
my $ucstring = 'BLÄH';
my $lcstring = 'füsse';
print 'uc('.$lcstring.') = '.uc($lcstring)."\n";
print 'lc('.$ucstring.') = '.lc($ucstring)."\n";


ergibt:

Quote
uc(füsse) = FüSSE
lc(BLÄH) = blÄh


..Die Umlaute werden ignoriert. Gibt es eine Möglichkeit, dies korrekt funktionieren zu lassen?

View full thread lc / uc und Umlaute