Thread Email::Find und E-Mails in Links? (14 answers)
Opened by bianca at 2010-06-01 16:22

topeg
 2010-06-01 19:13
#137863 #137863
User since
2006-07-10
2611 Artikel
BenutzerIn

user image
Hüstel:
Code (perl): (dl )
1
2
3
4
identifylinks (\$testtext,'<a href="%s" target="_blank">%s</a>','<a href="mailto:%s">%s</a>');
print "<pre>$testtext</pre>";
identifylinks_topeg (\$testtext,'<a href="%s" target="_blank">%s</a>','<a href="mailto:%s">%s</a>');
print "<pre>$testtext</pre>";


Kein Wunder das meines "nicht funktioniert" wenn du schon den bearbeiteten String noch einmal durchläufst!
mach mal daraus:
Code (perl): (dl )
1
2
3
4
5
6
7
my $txt=$testtext;
identifylinks (\$txt,'<a href="%s" target="_blank">%s</a>','<a href="mailto:%s">%s</a>');
print "<pre>$txt</pre>";

my $txt_topeg=$testtext;
identifylinks_topeg (\$txt_topeg,'<a href="%s" target="_blank">%s</a>','<a href="mailto:%s">%s</a>');
print "<pre>$txt_topeg</pre>";

View full thread Email::Find und E-Mails in Links?