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));
In reply to Re: qw() problem
by muntfish
in thread qw() problem
by jeanluca
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |