in reply to Matching dot using regexp

TIMTOWTDI. If you use a character class for your regex, then you don't need to escape the dot:
my @outputlist = split /[.:]/, $tim; # 01 00 01 004