You are not logged in.
Announcement
Unanswered posts
|
thanks
Or more readable:
my ($dd, $mm, $yyyy) = split '/', $row[column];
$row[column] = join('-', $yyyy, $mm, $dd);In a tPerlRow:
$row[column] = join(
'-',
(split '/', $row[column])[2,1,0]
);I have a date in this format 'dd/mm/yyyy' and i would like in this format 'yyyy-mm-dd'. How can i do ?