Given a list of strings, I'm interested in finding which ones are valid http://
URLs. My first approach would be to use a regex and do something like this:
var urls = strs.Where(str => urlRegex.matches(str));
Is there a more idiomatic/natural/simple way to do it?