in reply to Re: Alternative to POSIX::strptime
in thread Alternative to POSIX::strptime

The 5.10.0 POSIX module doesn't look like it supplies strptime:
% perl -v This is perl, v5.10.0 built for x86_64-linux-gnu-thread-multi [...] % perl -MPOSIX=strptime "strptime" is not exported by the POSIX module Can't continue after import errors at /usr/lib/perl/5.10/POSIX.pm line + 28 BEGIN failed--compilation aborted. % perl -MPOSIX -le 'print POSIX->VERSION' 1.13

Replies are listed 'Best First'.
Re^3: Alternative to POSIX::strptime
by davorg (Chancellor) on Jun 18, 2009 at 12:08 UTC

    You're right. POSIX has never included strptime. It includes strftime. I apologise for being confused by the original question :-)

    --

    See the Copyright notice on my home node.

    Perl training courses

Re^3: Alternative to POSIX::strptime
by Anonymous Monk on Jun 18, 2009 at 02:58 UTC