|< 1 2 >| | 19 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
my $supertext = undef;
$i = 0;
open(TEXT, "/home/nikster/supertext") || die "Unable to read from supertext : $!";
while(<TEXT>)
{
if ($_ =~ m/^hallo/ig) {
$i += 1;
#print "$i\n";
$text[$i] = $_;
}
}
close (TEXT);
1
2
3
4
5
6
7
8
9
10
11
12
13
open(TEXT, "/home/nikster/supertext") || die "Unable to read from supertext : $!";
while(<TEXT>)
{
if ($_ =~ m/^hallo/ig) {
push(@text, $_);
}
}
close (TEXT);
foreach $line (@text) {
#print "$line\n";
push @temp, (split(/\:|\[|\]| /, $line);
}
Quotepush @temp, (split(/\:|\[|\]| /, $line);
funktioniert nicht
1
2
3
4
5
6
7
8
9
10
11
my @lines;
open my $fh, "<", "/home/nikster/supertext" or die "Unable to read from supertext : $!";
while (<$fh>) {
if (m/^hallo/i) {
push @lines, [split m/[:\[\]]/, $_];
}
}
close $fh;
print $lines[4]->[3];
print "@{ $lines[4] }\n";
Quoteman kann sowas in perl sogar machen, aber so ziemlich jeder halbwegs
erfahrene programmierer wird dir davon abraten. macht nur ärger.
1
2
3
4
5
6
7
8
9
10
my @temp = ();
open(TEXT, "/home/nikster/supertext") || die "Unable to read from supertext : $!";
while(<TEXT>)
{
if ($_ =~ m/^hallo/ig) {
push @text, (split m/[:\[\]]/, $_);
}
}
close (TEXT);
|< 1 2 >| | 19 Einträge, 2 Seiten |