Thread ganzer bereich aus html parsen
(6 answers)
Opened by ptk at 2004-01-20 13:54
hallo,
ich möchte aus einer komplexen htmlseite einen kompletten bereich herausparsen welcher in einer speziellen "span" liegt. am liebsten würde ich HTML::Parser verwenden, ich komme damit leider nicht weiter. ich möchte aus: Code: (dl
)
<span id="Historybar1_lbHistBar" class="path"><a class="path" href="../../main/default.aspx?lang=EN">xyz.com</a> / <a class="path" href="../../main/automotive/default.aspx?lang=EN&cat=Automotive">Automotive</a> / <span>Products & solutions</span> / <span>Acoustic know-how</span></span> diesen bereich rausparsen: Code: (dl
)
<a class="path" href="../../main/default.aspx?lang=EN">xyz.com</a> / <a class="path" href="../../main/automotive/default.aspx?lang=EN&cat=Automotive">Automotive</a> / <span>Products & solutions</span> / <span>Acoustic know-how</span> könnt ihr mir bitte einen denkansatz liefern? ps. bin newbie in sachen perl |