in reply to qw "$string $string" doesn't interpolate
Also qq``, qq~~, qq//, qq{}, qq"", qq'' are all the same, a personalized quote for "". (that will interpolate values)
So, what metters is the q operator, and not the char used to delimite the string.
Now qw means quote word, and again, qw``, qw{}, qw(), qw"", qw'', are all the same. a personalized quote word, that means: split(/\s+/,'a b c $x $y $z') , where interpolation doesn't exists and there's no place that says that exists interpolation for quote word.
So, what metters is the operator and not the char used with q, qq, qw, qr...
http://perldoc.com is your friend!
Graciliano M. P.
"Creativity is the expression of the liberty".
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re:x2 qw "$string $string" doesn't interpolate (qqw anyone?)
by grinder (Bishop) on Jun 12, 2004 at 14:54 UTC | |
by SpanishInquisition (Pilgrim) on Sep 15, 2004 at 15:20 UTC | |
|
Re^2: qw "$string $string" doesn't interpolate
by QM (Parson) on Jun 12, 2004 at 15:24 UTC | |
by PodMaster (Abbot) on Jun 12, 2004 at 22:44 UTC | |
|