http://qs1969.pair.com?node_id=652663


in reply to Re: Reading a variable as a file
in thread Reading a variable as a file

Unless I misunderstand the question, Tie::File is the wrong thing here. It makes a file look like an array. But I think what OP wants is to make a scalar look like a file.

Replies are listed 'Best First'.
Re^3: Reading a variable as a file
by thezip (Vicar) on Nov 23, 2007 at 21:22 UTC

    Yes, you're absolutely right.

    But to me, this problem seems to fall somewhere in the middle regarding how it should be handled... On the one hand, a scalar containing the entire file would make it easier to perform the numerous regex substitutions, while on the other hand, an array would make it easier to to shift off the required items.

    I think the point I was trying to make was that an "array" (instead of reading the entire file into a scalar) might be another approach to this problem.

    Update: After re-reading the OP's question, I now realize that I pretty much ignored the basic spec for the problem.

    Your wish is my commandline.