[vox-tech] perl: quoting strings with spaces

2003-06-21 Thread Peter Jay Salzman
sorry for the line length. when using a quoting operator like qw and friends, how does one one quote a string with spaces? in the code snippet below, my code chokes on El Dorado. i also tried foreach my $county (qw/Amador Calaveras q+El Dorado+ Humboldt Lake Tehama Trinity/) and expected it

[vox-tech] perl: quoting strings with spaces

2003-06-21 Thread Micah Cowan
Peter Jay Salzman writes: sorry for the line length. when using a quoting operator like qw and friends, how does one one quote a string with spaces? in the code snippet below, my code chokes on El Dorado. i also tried foreach my $county (qw/Amador Calaveras q+El Dorado+

Re: [vox-tech] perl: quoting strings with spaces

2003-06-21 Thread Mike Simons
--o99acAvKqrTZeiCU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jun 21, 2003 at 05:22:17PM -0700, Peter Jay Salzman wrote: when using a quoting operator like qw and friends, how does one one quote a string with

Re: [vox-tech] perl: quoting strings with spaces

2003-06-21 Thread Jay Strauss
Or you can do it like: ('Amador','Calaveras','El Dorado','Humboldt','Lake Tehama','Trinity') - Original Message - From: Peter Jay Salzman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, June 21, 2003 7:22 PM Subject: [vox-tech] perl: quoting strings with spaces sorry