Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LadyAleena/4448c6cd03cbc72d5123381151737169 to your computer and use it in GitHub Desktop.
Save LadyAleena/4448c6cd03cbc72d5123381151737169 to your computer and use it in GitHub Desktop.
next if $media && $movie->{'media'} ne $media;
next if $genre && !$movie->{'genre'}{$genre};
next if $source && (!$movie->{'source'} || $movie->{'source'} !~ /\b$source(?!ing)/i);
next if $title && lc($movie->{'title'}) !~ /\L$title\E/i;
next if $alpha && first_alpha($movie->{'title'}) ne $alpha;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment