Last active
August 30, 2017 18:20
-
-
Save AndyA/c14b8eaa512c30ae220d2dbf067e2750 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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