in reply to # in qw
If all your elements start with '#' you can rip it out, then put it back in using map....
As in:for (map {"#$_"} qw(FF0000 00FF00 0000FF))
#!/usr/bin/perl -wT use strict; print "$_ " for (map {"#$_"} qw(FF0000 00FF00 0000FF)); print "\n"; =output #FF0000 #00FF00 #0000FF
-Blake
|
|---|