in reply to Re: Re-Interpolating a Scalar (a string)
in thread Re-Interpolating a Scalar (a string)

While this will work fine, it's probably not a good idea. Especially if you don't know ahead of time what's going to be in $raw, any malicious code that gets put there will be evaled by your program. Further, string eval is quite slow from what I hear. Instead, I would highly reccomend using the hash lookup method provided by cmeyer above.
  • Comment on Re^2: Re-Interpolating a Scalar (a string)