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