in reply to split function
See Time::Piece#!/usr/bin/perl -- use strict; use warnings; use Time::Piece; my $t = localtime; print $t, "\n", $t->strftime("%a %b %d %H:%M:%S %Y"),"\n"; print $t->strftime('%H'),"\n"; print $t->strftime('%M'),"\n"; __END__ Wed Jan 26 23:57:47 2011 Wed Jan 26 23:57:47 2011 23 57
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: split function
by Anonymous Monk on Jan 27, 2011 at 20:31 UTC | |
by ikegami (Patriarch) on Jan 27, 2011 at 21:09 UTC | |
by Anonymous Monk on Jan 27, 2011 at 20:54 UTC | |
|
Re^2: split function
by rgoud (Initiate) on Jan 28, 2011 at 03:50 UTC | |
by Anonymous Monk on Jan 28, 2011 at 04:08 UTC |