Thread Klein- in Großbuchstaben an bestimmten Stellen? (5 answers)
Opened by theresa at 2008-01-17 17:24

ptk
 2008-01-19 13:08
#104926 #104926
User since
2003-11-28
3645 Artikel
ModeratorIn
[default_avatar]
Alternativ kann man auch mit Unicode-Properties arbeiten:
Code: (dl )
1
2
3
4
use encoding 'iso-8859-1';
my $string = "vorname nachname ähhh";
$string =~ s/\b(\p{IsAlpha})/\U$1/g;
print $string;

View full thread Klein- in Großbuchstaben an bestimmten Stellen?