RE: Ok brain fart here...

2001-07-18 Thread Doug Johnson
Can we see a little more of the code? :o) Doug -Original Message- From: Richie Crews [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 11:43 AM To: Richie Crews; [EMAIL PROTECTED] Subject:RE: Ok brain fart here... Ok my problem is something not shown in the

RE: Ok brain fart here...

2001-07-18 Thread Richie Crews
EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 11:27 AM To: [EMAIL PROTECTED] Subject: Ok brain fart here... Ok I am beating my head why this is not working... $fname = ; chomp $fname; $fletter = substr($fname,0,1); # now we have the first letter of the first name if ( $flet

RE: Ok brain fart here...

2001-07-18 Thread Daryl J. Hoyt
What are the errors? It works fine here. -Original Message- From: Richie Crews [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 10:27 AM To: [EMAIL PROTECTED] Subject: Ok brain fart here... Ok I am beating my head why this is not working... $fname = ; chomp $fname

Re: Ok brain fart here...

2001-07-18 Thread GoodleafJ
cc: Subject: Ok brain fart here... 07/18/01

Re: Ok brain fart here...

2001-07-18 Thread Chas Owens
On 18 Jul 2001 11:26:45 -0400, Richie Crews wrote: > Ok I am beating my head why this is not working... > > $fname = ; > chomp $fname; > $fletter = substr($fname,0,1); > # now we have the first letter of the first name > if ( $fletter =~ /[a-f]/i) { > print "First letter is a-f\n"; >

RE: Ok brain fart here...

2001-07-18 Thread Doug Johnson
I did a cut and paste and it seems to work fine here.. What errors do you get or what result? Doug -Original Message- From: Richie Crews [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 11:27 AM To: [EMAIL PROTECTED] Subject:Ok brain fart here... Ok I am

Ok brain fart here...

2001-07-18 Thread Richie Crews
Ok I am beating my head why this is not working... $fname = ; chomp $fname; $fletter = substr($fname,0,1); # now we have the first letter of the first name if ( $fletter =~ /[a-f]/i) { print "First letter is a-f\n"; } You get the picture I would have other if's based on the first