in reply to qw() problem
You should have a look at perlop, specifically the section called "Quote and quote-like operators". This should explain qw etc.
I'm not 100% sure exactly what you're trying to achieve. Are you trying to make an array from the scalar value $all ? If so then split is your friend:
$all = "name1 name2 name3"; @arr = someFunc(@dd, split(/ /, $all));
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: qw() problem
by Zaxo (Archbishop) on Oct 10, 2005 at 12:44 UTC | |
|
Re^2: qw() problem
by jeanluca (Deacon) on Oct 10, 2005 at 12:22 UTC |