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

kezall
 2014-05-04 15:27
#175190 #175190
User since
2014-03-18
84 Artikel
BenutzerIn

user image
Ich probiere meinem *.html:
Code: (dl )
my $bisVrg = ' <P STYLE="margin-bottom: 0cm"><B>Familie</B> Hülsenfrüchtler (<I>Fabaceae</I>).</P> '; 

Code: (dl )
my $bisZum = 'Familie';


Source:
Code: (dl )
1
2
3
4
5
while ( $line = <LESEN> ) {
print SCHREIBEN $line;
last if ( $line =~ m/$bisVrg/ );
print "MATCH: $bisZum\n" if($line =~ m/$bisVrg/);
}


Gibt es womöglich was zum HTML und Regex ?

View full thread Finden in HTML