Re: UPPERCASE and DOING MULTIPLE THINGS

2002-07-22 Thread drieux
On Monday, July 22, 2002, at 08:11 , Bob H wrote: > I have a script that is *supposed* to search a file and make certain > words that I have in an array uppercase. My brain is not grokking it. > > Q1: What is wrong with my script (below)? what sorts of error messages did you get? > === SCRIPT

RE: UPPERCASE and DOING MULTIPLE THINGS

2002-07-22 Thread Nikola Janceski
See inline comments > -Original Message- > From: Bob H [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 22, 2002 11:12 AM > To: [EMAIL PROTECTED] > Subject: UPPERCASE and DOING MULTIPLE THINGS > > > I have a script that is *supposed* to search a file and make certain > words that I have

Re: UPPERCASE and DOING MULTIPLE THINGS

2002-07-22 Thread Jeff 'japhy' Pinyan
On Jul 22, Bob H said: >I have a script that is *supposed* to search a file and make certain >words that I have in an array uppercase. My brain is not grokking it. You should not use tr/// to make strings uppercase. Perl provides the uc() function for that. >Q1: What is wrong with my script (b