Thread Finden in HTML (42 answers)
Opened by kezall at 2014-05-04 13:50

kezall
 2014-05-05 17:23
#175246 #175246
User since
2014-03-18
84 Artikel
BenutzerIn

user image
Lauffähig ist es - nur es greift eben nicht. Bei $bisZum (^Familie) Marke wird nicht angehalten, sondern die ganze Html-Seite ausgegeben. Halt das HALT funktionieret nicht.

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  # - - - sortiert aus dem Array entnehmen
for $htmNam ( sort ( @files ) ) {
next if ( $htmNam eq '.' ) || ( $htmNam eq '..' );
$inpNam = "$inpDir/$htmNam";
$outNam = "$outDir/$htmNam";

# - - - Flora *.html bis Marke (^Familie) lesen und in ~/tmp abspeichern
$anzahl++;
open ( LESEN, "<", "$inpNam" ) or die "Lesefehler beim: $inpNam: $? \n";
open ( SCHREIBEN, ">>", "$outNam" ) or die "Schreibfehler in $outNam: $? \n";

while ( $line = <LESEN> ) {
print SCHREIBEN $line;
last if ( $line =~ m/$bisZum/ );
}
close ( LESEN );
close ( SCHREIBEN );
if ( $tstZhl != 0 ) {
if ( $tstZhl > $anzahl ) { ; } else { last; }
}
}
return $anzahl;

Code: (dl )
# <P STYLE="margin-bottom: 0cm"><B>Familie</B> Hülsenfrüchtler (<I>Fabaceae</I>).</P> 

View full thread Finden in HTML