Re: [Perl-unix-users] Using split

2001-01-16 Thread Ricardo Cumberbatch L.
Thanks a lot now is working and is GREAT !!! ___ Perl-Unix-Users mailing list. To unsubscribe go to http://listserv.ActiveState.com/mailman/subscribe/perl-unix-users

Re: [Perl-unix-users] Using split

2001-01-16 Thread Michael Branson
On Tue, Jan 16, 2001 at 11:24:25AM -0500, Ricardo Cumberbatch L. wrote: > Hi Every one, > > > I have a single cuestion how i do using the funtion split to separate a > date, example: > > $date = 2001/01/16; > > I whant do this give to $year = 2001; > $month = 01; >

Re: [Perl-unix-users] Using split

2001-01-16 Thread Manesh Rao
>Hi Every one, > > >I have a single cuestion how i do using the funtion split to separate a >date, example: > >$date = 2001/01/16; > >I whant do this give to $year = 2001; > $month = 01; > $day = 16; > >I do somthing like this > >($year, $month, $day) =

[Perl-unix-users] Using split

2001-01-16 Thread Ricardo Cumberbatch L.
Hi Every one, I have a single cuestion how i do using the funtion split to separate a date, example: $date = 2001/01/16; I whant do this give to $year = 2001; $month = 01; $day = 16; I do somthing like this ($year, $month, $day) = split (/ /, $