Hi,
for(<FILE>)
{
»» $_ =~ s/ä/ä/g;
usw. (für andere Umlaute)
»» push (@data, $_);
}
while (<FILE>) {
s/ä/ä/g;
push @data, $_;
}
Du willst aber eigentlich HTML::Entities benutzen.
Wie gesagt, es läuft nicht !
Als da hieße?
Cheatah