At 02:18 PM 12/17/2001 -0800, Scott Lutz wrote:
>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] .","
>}You can also assign the special variable "$," the value "," and it will separate all array values with a comma. $, = ", "; print (@output); -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
