Format list ?

2002-02-05 Thread Guru^garzaH
Say I have a list like this DOGFEMALE DALMATION62 POUNDS299.00320.00 DOGFEMALE DALMATION12 POUNDS280.00320.00 DOGGERMAN SHEPARD48 POUNDS290.00330.00 CAT FEMALE PERSIAN 8 POUNDS219.00300.00 CATMALE CALICO 9POUNDS219.00

Re: Multidimensional hashes..

2002-02-05 Thread Chas Owens
Take a look at perldoc -f each and perldoc -f keys. Normally I do something like this: foreach my $key (sort keys %hash) { print "$key => $hash{$key}\n"; print fiddle($hash{$key}), "\n"; } On Tue, 2002-02-05 at 20:34, Lorne Easton wrote: > Hopefully an easy one for you guys. >

Re: Regex question about '\b'

2002-02-05 Thread Chas Owens
On Tue, 2002-02-05 at 15:34, Jeff 'japhy' Pinyan wrote: > On Feb 5, Shawn said: > > > In a regex, the '\b' can stand for: > >1) a boundry between a word and non-word char > >2) bakcspace > > > > What is the precedence for figuring out which is being called? > > \b is ONLY "backspace" w

Re: formatting database text

2002-02-05 Thread Chas Owens
On Tue, 2002-02-05 at 12:29, Hughes, Andrew wrote: > I have created a news article database where non-technical people can cut > and paste articles to be stored in a mySQL database table. Everything > works. However when I display these in a browser, I want to have class="whatever"> tags around

Re: formatting database text

2002-02-05 Thread Chas Owens
On Tue, 2002-02-05 at 12:29, Hughes, Andrew wrote: > I have created a news article database where non-technical people can cut > and paste articles to be stored in a mySQL database table. Everything > works. However when I display these in a browser, I want to have class="whatever"> tags around

RE: perl2exe

2002-02-05 Thread Timothy Johnson
I think you are only supposed to get the nag message until you register, but yeah, it's still there. -Original Message- From: Gary Hawkins To: Eric Wang; [EMAIL PROTECTED] Sent: 2/5/02 8:28 PM Subject: RE: perl2exe "Perl Dev Kit's key new features include: "PerlApp - t

Re: Format list ?

2002-02-05 Thread John W. Krahn
Guru^Garzah wrote: > > Say I have a list like this > DOGFEMALE DALMATION62 POUNDS299.00320.00 > DOGFEMALE DALMATION12 POUNDS280.00320.00 > DOGGERMAN SHEPARD48 POUNDS290.00330.00 > CAT FEMALE PERSIAN 8 POUNDS219.00300.00 > CATMALE C

<    1   2