|< 1 2 3 >| | 24 Einträge, 3 Seiten |
$zusatz =~ s/(http:\/\/.*?\s)/<a href=\"$1\" class=\"userlink\" target=\"_blank\">Link zum Thema<\/a><br>/g;
<a href="http://www.xyzundsoweiter.de/datei.pdf" class="userlink" target="_blank">Link zum Thema</a>
$zusatz='<a href="'.$zusatz.'" class="userlink" target="_blank">Link um Thema</a>' if ($zusatz =~ m/\.pdf$/);
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;
1 2 3 4 5
if ($zusatz =~ m/\.pdf$/) { ..Generierung des HTML-Codes für PDF-Download... } else { ..Generierung des HTML-Codes für HTML-Download.... }
lids+2008-04-25 13:24:05--Ich kenn mich mit Perl so gut wie gar nicht aus.
Kannst Du mir den kompletten Code schreiben bitte?
Ich bin totaler Anfänger. Danke. :-)
1 2 3
$zusatz =~ s!(http://.*?)\s_(.*?)_!<table> <tr><td width=\"33\"><img src=\"graphics\/pdf_icon.gif\"><\/td> <td class=\"text\">$2<a href=\"$1\" target=\"_blank\">Datei im pdf-Format<\/a><\/td><\/tr><\/table>!g;
|< 1 2 3 >| | 24 Einträge, 3 Seiten |