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

ptk
 2007-03-02 21:51
#74542 #74542
User since
2003-11-28
3645 Artikel
ModeratorIn
[default_avatar]
Alternativ kannst du das utf8-Flag setzen:
Code: (dl )
1
2
3
4
5
my $ucstring = 'BLÄH';
my $lcstring = 'füsse';
utf8::upgrade($$_) for (\$ucstring, \$lcstring);
print 'uc('.$lcstring.') = '.uc($lcstring)."\n";
print 'lc('.$ucstring.') = '.lc($ucstring)."\n";

Oder mit "use utf8;" deklarieren, dann musst du aber die Datei auch als utf8 schreiben.

View full thread lc / uc und Umlaute