Re: assigning printf statement to an array

2005-06-07 Thread DBSMITH
09:18 beginners@perl.org PM cc Subjec

Re: assigning printf statement to an array

2005-05-26 Thread DBSMITH
Re: assigning printf statement to an array

Re: assigning printf statement to an array

2005-05-25 Thread Jeff 'japhy' Pinyan
On May 25, John Doe said: Am Mittwoch, 25. Mai 2005 04.10 schrieb Jeff 'japhy' Pinyan: Jeff, thanks a lot for taking over. My explanation would not have been so understandable and with this fullness. Glad to be of service. -- Jeff "japhy" Pinyan % How can we ever be the sold short o

Re: assigning printf statement to an array

2005-05-25 Thread John Doe
Am Mittwoch, 25. Mai 2005 04.10 schrieb Jeff 'japhy' Pinyan: [...] Jeff, thanks a lot for taking over. My explanation would not have been so understandable and with this fullness. joe -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: assigning printf statement to an array

2005-05-24 Thread Jeff 'japhy' Pinyan
On May 24, [EMAIL PROTECTED] said: 1> print 2> map {$_->[1].": ".$_->[0]."\n"} # create entity output 3> grep {$_->[0] > 100} # exclude age <= 100 4> map { [ 5> sprintf ("%.0f",( $now - ( stat("${hdir}$_" ) )[9] ) / ONE_DAY ), 6> $_ 7> ] } # create aref [age, filename] 8> grep {$_ ne "." and $

Re: assigning printf statement to an array

2005-05-24 Thread DBSMITH
To beginners@perl.org 05/24/2005 03:27 cc PM

Re: assigning printf statement to an array

2005-05-24 Thread John Doe
Hi Am Dienstag, 24. Mai 2005 18.05 schrieb [EMAIL PROTECTED] with funny quoting: [John:] > my @a= > map {$hdir.$_->[1]} # select filename > grep {$_->[0] > 100} # exclude age <= 100 > map { [ > sprintf ("%.0f",( $now - ( stat("${hdir}$_" ) )[9] ) / ONE_DAY ), > $_ > ] } # create aref [age,

Fw: assigning printf statement to an array

2005-05-24 Thread DBSMITH
cc beginners@perl.org Subject Re: assigning printf statement to an array(Document link:

Re: assigning printf statement to an array

2005-05-24 Thread DBSMITH
beginners@perl.org 05/24/2005 01:34 cc AM Subject Re: assignin

Re: assigning printf statement to an array

2005-05-23 Thread John Doe
Am Montag, 23. Mai 2005 20.05 schrieb [EMAIL PROTECTED]: > Hi all. > > This is a continuation from my original question, but with a twist. I am > now using sprintf to assign to an array, but I only want to assign to this > array of I find a number over 100 from my calculation. In the array/ha

Re: assigning printf statement to an array

2005-05-23 Thread DBSMITH
Hi all. This is a continuation from my original question, but with a twist. I am now using sprintf to assign to an array, but I only want to assign to this array of I find a number over 100 from my calculation. In the array/hash also needs to be the directory name. Here is my code and the s

Re: assigning printf statement to an array

2005-05-21 Thread Offer Kaye
On 5/21/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Here is my code, but I am not seeing the elements being populated as I say > show me the data in element 1 > Line 28 is not working after executing line 30. > Any ideas? > You probably want to use "sprintf" instead of "printf". Read "