10 Einträge, 1 Seite |
$zusatz =~ s/(http:\/\/.*?\s)/<a href=\"$1\" class=\"link\" target=\"_blank\">Link zum Thema<\/a><br>/g;
1 2 3 4
my $string = "irgendein text http://test.example _wort_ noch was"; $string =~ s!(http://.*?)\s_(.*?)_!<a href="$1" class="link" target="_blank">$2</a>!g; print $string;
irgendein text <a href="http://test.example" class="link" target="_blank">wort</a> noch was
1 2 3 4 5
my $text = 'Irgendwas anderes'; my $string = "irgendein text http://test.example _wort_ noch was"; $string =~ s!(http://.*?)\s!<a href="$1" class="link" target="_blank">$text</a> !g; print $string;
<a href="http://test.example" class="link" target="_blank">Test</a>
<a href="http://example.undsoweiter" class="link" target="_blank">Hallo</a>
1 2 3 4
$zusatz =~ s!(http://.*?)\s_(.*?)_!<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"> <tr><td width=\"33\" class=\"text\"><img src=\"graphics\/pdf_icon.gif\" width=\"30\" height=\"30\"> <\/td><td class=\"text\" valign=\"top\">$2<br><a href=\"$1\" class=\"userlink\" target=\"_blank\"> Datei im pdf-Format<\/a><\/td><\/tr><\/table>!g;
10 Einträge, 1 Seite |