Here was me thinking I'd manage ok for the rest of today, but no, more confusion.
The page I downloaded is a simple html list, but does not close its <li> tags. Is there any way for me to detect for this?
html code:
<html>
<li>Show Title: Supernatural
<li>Title:Lazarus Rising
<li>Season:4
<li>Episode:1</html>
I tried new RegExp("<li>Filename:(. * ?)", "i")); for it, but that doesnt work, because the ? make it take nothing since theres no ending match. Any possibilites?