Re: checking a reg exp

2003-06-16 Thread John W. Krahn
"John W. Krahn" wrote: > > You could do something like this: > > # setup fundcode hash > my %fundcodes; > @fundcodes{ @fundcodes } = (); > > while ( my $temp = ) { > print "$.\n"; > chomp; Sorry, that should be: chomp $temp; > for my $field ( split /\|/, $temp ) { >

Re: checking a reg exp

2003-06-16 Thread John W. Krahn
Tim McGeary wrote: > > Greetings, Hello, > I am a new subscriber and I do know a little perl, but I am trying to > pick up a lot more very quickly. I am having an issue with a conditional > checking a regular expression > that doesn't make sense and every book or online resource I have found > s

RE: checking a reg exp

2003-06-16 Thread Wagner, David --- Senior Programmer Analyst --- WGO
Tim McGeary wrote: > Greetings, > > I am a new subscriber and I do know a little perl, but I am trying to > pick up a lot more very quickly. I am having an issue with a > conditional checking a regular expression > that doesn't make sense and every book or online resource I have found > shows the

checking a reg exp

2003-06-16 Thread Tim McGeary
Greetings, I am a new subscriber and I do know a little perl, but I am trying to pick up a lot more very quickly. I am having an issue with a conditional checking a regular expression that doesn't make sense and every book or online resource I have found shows the same syntax I have. Script bac