in reply to Re: qw "$string $string" doesn't interpolate
in thread qw "$string $string" doesn't interpolate

I dunno, there's an obvious conclusion to draw from all this:

operatoracts oninterpolates
qstringno
qqstringyes
qwwordno
qqwwordyes

... except that the last row in bold doesn't exist. That would be pretty cool actually, there have been times when I would have liked to be able to do just that.

Oh well, no-one ever claimed that Perl's operators were orthogonal.

- another intruder with the mooring of the heat of the Perl

  • Comment on Re:x2 qw "$string $string" doesn't interpolate (qqw anyone?)

Replies are listed 'Best First'.
Re^2: x2 qw "$string $string" doesn't interpolate (qqw anyone?)
by SpanishInquisition (Pilgrim) on Sep 15, 2004 at 15:20 UTC
    I was just about to post the same question, and I see the question has already been asked.

    qqw needs to be part of the core, IMHO. It would also function (via accidential TIMTOWTDI-ness) as a split on space delimited strings... @tokens = qqw/$foo/;