in reply to Re: Why do I get this error?
in thread Why do I get this error?

> You can "fix" the value of $" by:

> local $" = ' ';

Well I didn't suggest this, cause any row element containing spaces will contain tabs after the s/\s/\t/g.

Using an explicit join is much cleaner.

Otherwise better local $" = "\t"; and no substitution at all...

Cheers Rolf

( addicted to the Perl Programming Language)