Hi;
I want get a html file and extract .mp3 links.
Is this true :(?)

1- Load html file with string
Code:
readtext = TextFile.ReadToString(_DesktopFolder .. "\\Tst.htm");
2- Now most find mp3 links
Code:
findmp3 = String.Find("readtext", XXX, , 1, false);
3- So add any link to listbox
Example:
Code:
for n in findmp3 do
    ListBox.AddItem("ListBox", findmp3, "");
end
I have problem with section 2, can you help me? or are have a better idea ?

thanks.