in reply to Problem splitting Time::Local result
my @text_dat1 = split(/\s+/, $DatStr1); [download]
The regular expression /\s+/ gets satisfied by the longest possible sequence of whitespace possible, whereas / / is only satisfied by a single space.