From:                   "Scott Lutz" <[EMAIL PROTECTED]>
> I was looking for more of a way to print out the array, with inserting
> a comma (,) between every array value, like while ( @output ) { 
>  print $output[position] .","
> }
> 
> or something like that, 
> I just figure that there would be an easy way to do it.

print join( ',', @output),"\n";

Jenda

=========== [EMAIL PROTECTED] == http://Jenda.Krynicky.cz ==========
There is a reason for living. There must be. I've seen it somewhere.
It's just that in the mess on my table ... and in my brain.
I can't find it.
                                        --- me

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to