foreach my $link ( 'The Bottled Water Lie', 'The Bottled Water Lie', ) { my ($url, $title) = $link =~ m{href="(.+)">(.+)} or next; $url =~ /video/ and next; print("$url: $title\n"); }