in reply to RE: RE: Re: script adding spaces into a file for no reason...
in thread script adding spaces into a file for no reason...

I'm not sure what the problem is, but I'll add a couple of ways to interpolate an array without spaces...
print "<textarea>", @text, "</textarea>\n"; # (unless you've redefined $,)

...or...

{ local $"; print "<textarea>@text</textarea>\n"; }