Und hier das Ganze inkl. Uhrzeiten:
Spoiler anzeigen
[autoit]
#include <Array.au3>
#include <Inet.au3>
$aOut = _Get_Playlist_swr3()
[/autoit] [autoit][/autoit] [autoit]_ArrayDisplay($aOut)
[/autoit] [autoit][/autoit] [autoit]Func _Get_Playlist_swr3()
Local $sSource, $aOut, $sBuffer
$sSource = _INetGetSource("http://www.swr3.de/musik/musikrecherche/-/id=47424/did=202234/1wuwzys/index.html")
$sBuffer = StringToBinary($sSource, 1)
$sSource = BinaryToString($sBuffer, 4)
$aOut = StringRegExp($sSource, '(?s)<tr class="farben_hg.+?">.+?<td>(.+?)</td>.+?<td>(.+?)</td>.+?<td>(.+?)</td>', 3)
If Not IsArray($aOut) Then Return SetError(1, 0, 0)
For $i = 0 To UBound($aOut) -1
$aOut[$i] = StringRegExpReplace($aOut[$i], '<.+?>|\h{2,}|\v', '')
Next
Return $aOut
EndFunc