From:                   "Lysander" <[EMAIL PROTECTED]>
> This doesn't seem to work... My webhost is running PERL 5.004_04
> 
>   s/foo/bar/ for @body;

Too old perl for this. Use

        for (@body) {
                s/foo/bar/;
        }

instead.

Jenda

=========== [EMAIL PROTECTED] == http://Jenda.Krynicky.cz ==========
There is a reason for living. There must be. I've seen it somewhere.
It's just that in the mess on my table ... and in my brain.
I can't find it.
                                        --- me

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to