> > 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
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
>
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