#!/usr/bin/perl
# URL that generated this code:
# http://txt2re.com/index-perl.php3?s=11:Jan:2019%20%22This%20is%20an%20Example!%22&12&-65
$txt='11:Jan:2019 "This is an Example!"';
$re1='(\\d+)'; # Integer Number 1
$re2='.*?'; # Non-greedy match on filler
$re3='(a)'; # Any Single Character 1
$re=$re1.$re2.$re3;
if ($txt =~ m/$re/is)
{
$int1=$1;
$c1=$2;
print "($int1) ($c1) \n";
}
#-----
# Paste the code into a new perl file. Then in Unix:
# $ perl x.pl
#-----