in reply to Converting output from numeric values to text
should beif ($Month =0)
But I'd do it with an array instead, something like:if ($Month ==0)
---my @Month_name = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec); my $New_mo = $Month_name[$Month]
|
|---|