#!/usr/bin/perluse warnings;use strict;my $text = "3 2 1 abc";if ($text =~ /\G\s*(.+)$/) { print ucfirst($1), "!\n";}