PDA

View Full Version : Extract link from a html file...


Soheyl
03-07-2006, 08:07 PM
Hi;
I want get a html file and extract .mp3 links.
Is this true :(?)

1- Load html file with string
readtext = TextFile.ReadToString(_DesktopFolder .. "\\Tst.htm");

2- Now most find mp3 links
findmp3 = String.Find("readtext", XXX, , 1, false);

3- So add any link to listbox
Example:
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.