in reply to one liner automagic strftime()
In the substitution operator the right hand side is evaluated in scalar context and thus localtime returns the formatted date as a string as per documentation:
use strict; use warnings; my @x = localtime 1503403724; print "@x\n"; my $x = localtime 1503403724; print "$x\n"; my $z = "ccc"; $z =~ s/ccc/wantarray()?"list":"scalar"/e; print "$z\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: one liner automagic strftime()
by seki (Monk) on Aug 23, 2017 at 13:03 UTC | |
by hdb (Monsignor) on Aug 24, 2017 at 07:45 UTC |