RE: getting rid of additional space in array output

2002-02-25 Thread Jonathan E. Paton
> > I need some help badly on this slight technicality > > I am facing. I am reading every line of input > > into a scalar variable, spllitting on null, to get > > every character into an array, and then splicing. > > When I print the array elements of interest, a > > space is appended to the inp

Re: getting rid of additional space in array output

2002-02-24 Thread John W. Krahn
M Z wrote: > > hello Hello, > I need some help badly on this slight technicality I > am facing. I am reading every line of input into a > scalar variable, spllitting on null, to get every > character into an array, and then splicing. When I > pring the array elements of interest, a space is >

RE: getting rid of additional space in array output

2002-02-24 Thread Timothy Johnson
I believe the print command prints a space between list elements by default. You could always try something like this: foreach(@left){ print F1 $_; } -Original Message- From: M z To: [EMAIL PROTECTED] Sent: 2/24/02 8:49 PM Subject: getting rid of additional space in array output he