- or download this
my ($dummy, $dummy, $result) = ...;
- or download this
my (undef, undef, $result) = ...;
- or download this
my $result = (
map /(\d\d \w\w\w \d\d\d\d)/, split /\n+/, $content
)[2];
- or download this
my ($result) = $content =~ /End Date.*?(\d\d \w\w\w \d\d\d\d)/s;