in reply to variables for variables

split() has to used in the following way:

split (/\,/, $fieldList);

Also, it would be helpful for you if you took the extra step and inserted use strict; and declared variables using my().

Zenon Zabinski | zdog | zdog7@hotmail.com

Replies are listed 'Best First'.
Re: (zdog) Re: variables for variables
by no_slogan (Deacon) on May 31, 2001 at 00:49 UTC
    You're wrong about split. It can take a string and interpret it as a regex. You don't need to escape commas in a regex, either. If you want to, fine, but it's not necessary.

    Using strict is just going to make the code fail worse. Not that that's a bad thing.

    The problem is the single quotes in $in{'$field'}. But please, please read Dominus's article (mentioned above) about why you shouldn't be doing this in the first place.