http://qs321.pair.com?node_id=487874


in reply to Subtle omission in perlop?

I thought that meant interpretation of double quotes inside (i.e. in the contents of) the variable (in the case that it is interpreted as a pattern to be globbed.) Perhaps I've just been confused, though...Hopefully, someone will clear this up in their reply.
chas

Replies are listed 'Best First'.
Re^2: Subtle omission in perlop?
by duff (Parson) on Aug 30, 2005 at 17:53 UTC

    No, what that paragraph is meant to mean is that angle-brackets are a double-quote context. I.e., just as variables are interpolated in double quotes, so shall they be interpolated in angle brackets (except for the case of <$foo> which is always interpretted as a readline() on the $foo filehandle)

    In fact, I don't know why the docs don't say these very words.