in reply to Re: Custom date string formatting
in thread Custom date string formatting

you could be even more liberal by using [^\d]+:
sub format_date { return join '.', (split /[^\d]+/, $_[0])[2,1,0]; }
--
AltBlue.