1
2
3
4
5
6
if ($utfzeile =~ m/\"(.*)\"/)
{
$anfstr = index($utfzeile,$hochkomma,0);
$endstr = index($utfzeile,$hochkomma, $anfstr +1);
$laenge = $endstr - $anfstr;
$teilzeile = substr($utfzeile,$anfstr, $laenge);
$utfzeile =~ s/$teilzeile/$neuzeile/;
1
2
3
4
5
6
7
8
9
10
11
12
13
while ($utfzeile =~ m/\"(.*)\"/)
{
$anfstr = index($utfzeile,$hochkomma,0);
$endstr = index($utfzeile,$hochkomma, $anfstr +1);
$laenge = $endstr - $anfstr;
$teilzeile = substr($utfzeile,$anfstr, $laenge);
$neuzeile = $teilzeile;
$neuzeile =~ s/\,|\;|\|//g;
$neuzeile =~ s/$hochkomma//g;
$utfzeile =~ s/$teilzeile/$neuzeile/;
};
$utfzeile =~ s/$teilzeile/$neuzeile/;
$utfzeile =~ s/\Q$teilzeile\E/$neuzeile/;