Thread lc / uc und Umlaute
(5 answers)
Opened by GoodFella at 2007-02-23 13:45 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 ..Die Umlaute werden ignoriert. Gibt es eine Möglichkeit, dies korrekt funktionieren zu lassen? |