M K Scott wrote:
Well, it may not be the ideal solution but just for the record I got it to work. I used a scalar to contain the correect value: $pound = chr 156; Then used unshift to add it to the array. unshift @array, $pound; Seems to have done the trick which is all I was after.
Just a note that makes it so you don't have to create a var for a onetime thing (which you should be my()ing BTW ;p) and makes it one line shorter:
unshift @characters, chr(156);
Cheers for the help, I'm sure I'll be back soon.
Cool, see you around, :) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>