in reply to Re: Using split, splice, and join to remove time from scalar context return of localtime()
in thread Using split, splice, and join to remove time from scalar context return of localtime()
Got it. Thanks!
use POSIX qw (strftime); $now = strftime('%a %b %e %Y', localtime);
|
|---|