Backreference, parse time string

 
#
# Backreference
#
if($i =~ /Time: (..):(..):(..)/){
  $hours = $1;
  $mins = $2;
  $secs = $3;
}