Skip to content

Instantly share code, notes, and snippets.

@AndyA
Last active August 30, 2017 18:20
Show Gist options
  • Save AndyA/c14b8eaa512c30ae220d2dbf067e2750 to your computer and use it in GitHub Desktop.
Save AndyA/c14b8eaa512c30ae220d2dbf067e2750 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use v5.10;
use autodie;
use strict;
use warnings;
my $str = "Arts: Culture Fix: Classical Architecture";
die unless $str =~ /^.*?:.*?:\s*(.*)$/;
say $1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment