On Aug 9, 11:58 am, [EMAIL PROTECTED] (Mathew Snyder) wrote:

> What I am doing is declaring an array and assigning the value:
> @array = qw/All "A - H" "I - P" "Q - Z"/;

You don't want qw{} here.  Just do it the brute-force way:

 @array = ("All", "A - H", "I - P", "Q - Z");


--
The best way to get a good answer is to ask a good question.
David Filmer (http://DavidFilmer.com)


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to