I need to get all instances of http://someurl/somefile.flv within a HTML file. Extension must not be case sensitive.
I currently use the following simple regular expression that I use in Javascript:
var rePattern = new RegExp(
"(http://.*.flv)",
"gi"
);
It has it's flaws though, especially if there is a URL and somewhere further in the file you have something mentioning FLV.
I've found various regular expressions that check for URLs, etc but I cannot correctly modify them to just search for FLV links.