RE: Splitting on '\'

2004-05-25 Thread Bradley K. Embree
Try: @Array = split("",$String); Bradley K. Embree, IT Support Excel Kitchens Email: [EMAIL PROTECTED] Phone: 1.250.376.8713 Fax: 1.250.376.4511 > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > Dax T. Games > Sent: T

RE: Adding pod to the ActiveState HTML documentation

2004-03-24 Thread Bradley K. Embree
perl -MActivePerl::DocTools -e UpdateHTML(1) Bradley K. Embree, IT Support Excel Kitchens Email: [EMAIL PROTECTED] Phone: 1.250.376.8713 Fax: 1.250.376.4511 > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Guay Jean-Sébastien

RE: DBI Question

2003-07-23 Thread Bradley K. Embree
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > Stephen Patterson > Sent: Wednesday, July 23, 2003 11:10 AM > To: [EMAIL PROTECTED] > Subject: Re: DBI Question > > > as you'll only be getting a single element, you should be able to use > $count = $s

RE: Build Html Help

2003-06-27 Thread Bradley K. Embree
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > Borkur Gudjonsson > Sent: Friday, June 27, 2003 9:36 AM > To: [EMAIL PROTECTED] > Subject: Build Html Help > > > Hi. > I´m trying to rebuild the HTML documentation. I used to do it with > > perl -MHtmlHel

RE: Delayed writing using file handles???

2003-06-18 Thread Bradley K. Embree
Title: Message one of MJD's writeups will help you see what is going on here:   http://perl.plover.com/FAQs/Buffering.html   or here is the short answer:   my $old_file_handle = select LOGFILE; $| = 1; select $old_file_handle; -Original Message-From: [EMAIL PROTECTED] [mail

RE: Reverse of Chomp...

2003-06-12 Thread Bradley K. Embree
Try: print STDOUT join "\n", @array; Brad -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of George Gallen Sent: Thursday, June 12, 2003 1:46 PM To: [EMAIL PROTECTED] Subject: Reverse of Chomp... Is there a way to reverse chop/chomp I'm reading into an arr