Strftime %e not useable in perl?

2003-07-08 Thread Jensen Kenneth B SrA AFPC/DPDMPQ
Wondering why this doesn't work: Use POSIX qw(strftime); my ($month, $day) = split / /,(strftime '%b %e',localtime()); %e should be the day of the month in the format 1-31. But this does work: Use POSIX qw(strftime); my ($month, $day) = split / /,(strftime '%b %d',localtime()); %d is the day of

RE: Strftime %e not useable in perl?

2003-07-08 Thread Bob Showalter
Jensen Kenneth B SrA AFPC/DPDMPQ wrote: Wondering why this doesn't work: Use POSIX qw(strftime); my ($month, $day) = split / /,(strftime '%b %e',localtime()); %e should be the day of the month in the format 1-31. But this does work: Use POSIX qw(strftime); my ($month, $day) = split /

Re: Strftime %e not useable in perl?

2003-07-08 Thread John W. Krahn
Jensen Kenneth B Sra Afpc/Dpdmpq wrote: Wondering why this doesn't work: Use POSIX qw(strftime); my ($month, $day) = split / /,(strftime '%b %e',localtime()); %e should be the day of the month in the format 1-31. But this does work: Use POSIX qw(strftime); my ($month, $day) = split /