#!/usr/bin/perl
# URL that generated this code:
# http://txt2re.com/index-perl.php3?s=11:Jan:2019%20%22This%20is%20an%20Example!%22&57&1
$txt='11:Jan:2019 "This is an Example!"';
$re1='.*?'; # Non-greedy match on filler
$re2='.'; # Uninteresting: c
$re3='.*?'; # Non-greedy match on filler
$re4='.'; # Uninteresting: c
$re5='.*?'; # Non-greedy match on filler
$re6='.'; # Uninteresting: c
$re7='.*?'; # Non-greedy match on filler
$re8='.'; # Uninteresting: c
$re9='.*?'; # Non-greedy match on filler
$re10='.'; # Uninteresting: c
$re11='.*?'; # Non-greedy match on filler
$re12='.'; # Uninteresting: c
$re13='.*?'; # Non-greedy match on filler
$re14='.'; # Uninteresting: c
$re15='.*?'; # Non-greedy match on filler
$re16='.'; # Uninteresting: c
$re17='.*?'; # Non-greedy match on filler
$re18='.'; # Uninteresting: c
$re19='(.)'; # Any Single Character 1
$re20='.*?'; # Non-greedy match on filler
$re21='(".*?")'; # Double Quote String 1
$re=$re1.$re2.$re3.$re4.$re5.$re6.$re7.$re8.$re9.$re10.$re11.$re12.$re13.$re14.$re15.$re16.$re17.$re18.$re19.$re20.$re21;
if ($txt =~ m/$re/is)
{
$c1=$1;
$string1=$2;
print "($c1) ($string1) \n";
}
#-----
# Paste the code into a new perl file. Then in Unix:
# $ perl x.pl
#-----