RE: timestamp without the time

2002-01-08 Thread Bob Showalter
> -Original Message- > From: Alex Harris [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, January 08, 2002 1:17 PM > To: [EMAIL PROTECTED] > Subject: timestamp without the time > > > > > How do I get the mm dd a file was created WITHOUT the time? Note that you cannot strictly get a cr

RE: timestamp without the time

2002-01-08 Thread McCollum, Frank
I don't know what your timeStamp string looks like, but if it looked like: 1/8/2001 18:00 ( $date, $time ) = split; would separate the two. The default split here is on any whitespace. To specify some other split you would do it as follows: split/:/; (where it would split on ':'). -Origi