Reply to thread

This may or may not work (it uses a .+ which i hate to use).

Kurzinhalt</h2></li>[^>]+>(?<GroupName>.+)</li>


You would then have to use a variable modifier in the scraper engine to remove the unwanted html tags.

Scraper Engine - Moving Pictures


[CODE]

<parse name="summary" input="${details_page}" regex="${rx_description}"/>

        <if test="${summary[0][0]!=">

            <set name="summary_clean" value="${summary[0][0]:striptags}" />

            <set name="movie.summary" value="${summary_clean:htmldecode}" />

        </if>

[/CODE]


Top Bottom