#!/usr/bin/perl
# URL that generated this code:
# http://txt2re.com/index.php3?s=03:Dec:2019%20%22This%20is%20an%20Example!%22&10
$txt='03:Dec:2019 "This is an Example!"';
$re1='.*?'; # Non-greedy match on filler
$re2='((?:[a-z][a-z]+))'; # Word 1
$re=$re1.$re2;
if ($txt =~ m/$re/is)
{
$word1=$1;
print "($word1) \n";
}
#-----
# Paste the code into a new perl file. Then in Unix:
# $ perl x.pl
#-----