Leser: 2
7 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl
use strict;
use warnings;
my $file = "result.html";
open FILE, "<", $file or die $!;
my @lines = <FILE>;
close FILE;
foreach my $line (@lines) {
my ($a, $b, $c, $d, $rest) = split(/stelle wo geschnitten werden soll/, $line, 4);
print "$a\n";
print "$b\n";
print "$c\n";
print "$d\n";
print "$rest\n";
}
while my $line ( <FILE> ) { ...
my ($a, $b, $c, $d, @rest) = split(/stelle wo geschnitten werden soll/, $line, 4)
1
2
my @teil = split(/stelle wo geschnitten werden soll/, $line, 4);
print $teil[0], "\n", $teil[1], "\n", $teil[2], "\n", $teil[3], "\n", @teil[ 4 .. $#teil ], "\n";
print( join ( "\n", @teil[ 0 .. 3 ], join( " ", @teil[ 4 .. $#teil ] ) ), "\n");
7 Einträge, 1 Seite |