RE: yet another question

2009-10-07 Thread Bob McConnell
From: Slick > > What do you guys do to practice? Do you practice one script > over and over again? Do you read differnt scripts and figure > out what is happening in each one? Do you think of ideas to > do things, then make the script for that? It sounds to me like you are looking at Perl as a s

Re: yet another question

2009-10-07 Thread Shlomi Fish
On Wednesday 07 Oct 2009 02:11:38 Slick wrote: > Sorry for all my questions. > > What do you guys do to practice? Do you practice one script over and over > again? Do you read differnt scripts and figure out what is happening in > each one? Do you think of ideas to do things, then make the scrip

Re: yet another question

2009-10-06 Thread David Christensen
Slick wrote: What do you guys do to practice? Do you practice one script over and over again? Do you read differnt scripts and figure out what is happening in each one? Do you think of ideas to do things, then make the script for that? As they say: "Necessity is the mother of invention."

Re: yet another question

2009-10-06 Thread Owen
> Sorry for all my questions. > > What do you guys do to practice? Do you practice one script over and > over again? Do you read differnt scripts and figure out what is > happening in each one? Do you think of ideas to do things, then make > the script for that? I really suggest you go here and t

Re: Yet another question on perl modules

2005-07-07 Thread Xavier Noria
On Jul 7, 2005, at 8:16, Peter Rabbitson wrote: Hello everyone, Most modules I run across have a BEGIN block containing some variable declarations, module loaders etc. Although I understand what BEGIN is (code being evaluated immediately after it is parsed), I miss the point of the excercise.

Re: Yet another question on perl modules

2005-07-06 Thread Peter Rabbitson
On Thu, Jul 07, 2005 at 02:22:34AM -0400, Casey West wrote: > This is a confusing question, but I think the answer is that a BEGIN > block would come into play before any of these things are executed. > > -- > Casey West > > Sorry :) Question is: why would I want to use a BEGIN block in the

RE: Yet another question...

2002-09-17 Thread Wagner, David --- Senior Programmer Analyst --- WGO
From what you are asking, it sounds like you are using a regex, then add a i to the end of the regex. If not a regex, then you could either uc ( upper case ) or lc ( lower case ) the inputted value and check accordingly. uc($filename) eq 'SUPER.GIF' or lc($filename) eq 'super.gif