Hi all,
I'm beginner in Perl. I need to concatenate three values in the date format like,
$fullDate = $ARGV[3] . "/" . $ARGV[4] . "/" . $ARGV[5];
But while concatenating, it is performing division on values. I have tried '.',':','-'. But its not working.
Pls suggest me how to proceed.