Thread Ersetzung von Variablen in einem String (9 answers)
Opened by Meier123 at 2016-07-28 16:32

Gast Meier123
 2016-07-29 14:37
#185194 #185194
Hier ist noch einmal der gesamte Code:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
my $filename2 = 'beispiel.csv';
if (open(my $fh2, '+<:encoding(UTF-8)', $filename2)) {

while (my $row2 = <$fh2>) {

my $laenge=length($row2);

if ($laenge == $globla)
{

for my $stellen (@stellen)
{
substr $row, $stellen,1,';';
}


print $fh2 $row2;

}
}
} else {
warn "Could not open file '$filename2' $!";
}


@stellen und $globla wurde vorher definiert.

Danke für Eure Unterstützung
Last edited: 2016-07-29 14:42:35 +0200 (CEST)

View full thread Ersetzung von Variablen in einem String