in reply to how to use file::Find ?

First if you want to find the week number :
See DateTime

#!/usr/bin/perl -w use strict; use DateTime; my $date = q{20060911}; my $year = substr( $date, 0, 4 ); my $month = substr( $date, 4, 2 ); my $day = substr( $date, 6, 2 ); print DateTime->new( year => $year, month => $month, day => $day )->we +ek_number;

hth,
PooLpi

'Ebry haffa hoe hab im tik a bush'. Jamaican proverb

Replies are listed 'Best First'.
Re^2: how to use file::Find ?
by steph_bow (Pilgrim) on Apr 17, 2008 at 12:30 UTC

    Hello poolpi,

    Thanks a lot for your help

    For the moment, I do not have the right to install this new module. But I will have the right in a few days. Could you tell me in which directory I should install it ? Because all the .pm files are in several directories and I don't know in which directory the file should be.