<?php
# URL that generated this code:
# http://txt2re.com/index-php.php3?s=11:Jan:2019%20%22This%20is%20an%20Example!%22&12&-10
$txt='11:Jan:2019 "This is an Example!"';
$re1='(\\d+)'; # Integer Number 1
$re2='.*?'; # Non-greedy match on filler
$re3='(Jan)'; # Word 1
if ($c=preg_match_all ("/".$re1.$re2.$re3."/is", $txt, $matches))
{
$int1=$matches[1][0];
$word1=$matches[2][0];
print "($int1) ($word1) \n";
}
#-----
# Paste the code into a new php file. Then in Unix:
# $ php x.php
#-----
?>