Re: I want out, but I'm no idiot.

2001-10-27 Thread Roger C Haslock
Just a suggestion, but could someone set up a newsgroup for those that want out, but can't make it. (And someone else arrange their swift transfer to it!) - Roger - -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Sort or Array Assigning problem???

2001-10-27 Thread Evil Bag Piper
Hello List, Long time reader, first time poster. I have created a script that will generate 10 random numbers between 1 and 50. The numbers are assigned to variables in order from one to ten. The variables are $random_one_a, $random_two_a, $random_three_a and so on all the way to $random_ten_a

Re: Sort or Array Assigning problem???

2001-10-27 Thread John Griessen
On Saturday 27 October 2001 03:11 pm, you wrote: @sorted_a = sort{$a<=>$b}(@numbers_a); I can then print out the @sorted_a array and the numbers appear on the screen in order from lowest to highest. The problem comes next. I want to take those ten numbers in ascending order and assign them t

Re: Sort or Array Assigning problem???

2001-10-27 Thread John Griessen
A way to do that is use lists again ...like you did to put values into @numbers_a for example $randomonea = @sorted_a[0]; $randomtwoa = @sorted_a[1]; $randomthreea = @sorted_a[2]; $randomfoura = @sorted_a[3]; . . .another way: (randomonea,$randomtwoa,$randomthreea,--,--,--,--,--,--,--) = @sort

Using the require command with perl

2001-10-27 Thread Troy May
Hi, I'm trying to use the require command with perl but when i want to put a variable within the require statement it always errors out. The code looks something like this. require "/absolute/path/to/files/$FORM{'id'}/options.txt"; Is this not possible? thanx for the help. -- To unsubscribe,