RE: "Use of uninitialized value" error message

2002-03-14 Thread Jason Larson
> -Original Message- > From: John W. Krahn [mailto:[EMAIL PROTECTED]] > Subject: Re: "Use of uninitialized value" error message > > Jason Larson wrote: > > > > I'm still new to Perl myself, so I can't tell you exactly > what's h

Re: "Use of uninitialized value" error message

2002-03-13 Thread John W. Krahn
Jason Larson wrote: > > I'm still new to Perl myself, so I can't tell you exactly what's happening, > but it looks like $result_value1 is undef when it gets to the if statement. > I think a better way to accomplish what you're trying to do is simply: > > my $result_value1; > if ($result_valu

RE: "Use of uninitialized value" error message

2002-03-13 Thread Ho, Tony
changed the above code to the following and it worked ("Use of uninitialized value" error message" did not appear): $result_value1 = $database1{$input_key1} || " "; if ($result_value1 ne " ") { $a= substr($result_value1, 0, 8); $b= substr($result

RE: "Use of uninitialized value" error message

2002-03-13 Thread Jason Larson
Original Message- From: Ho, Tony [mailto:[EMAIL PROTECTED]] Subject: RE: "Use of uninitialized value" error message Hi Nikola/Jason Thanks for the help. The variable $result_value1 is declared within the subroutine and is never used outside the subroutine. I original

RE: "Use of uninitialized value" error message

2002-03-13 Thread Nikola Janceski
x27;t tell where the varible goes out of scope. -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 11:06 AM To: 'Ho, Tony'; '[EMAIL PROTECTED]' Subject: RE: "Use of uninitialized value" error message >

RE: "Use of uninitialized value" error message

2002-03-13 Thread Jason Larson
> -Original Message- > From: Ho, Tony [mailto:[EMAIL PROTECTED]] > Subject: "Use of uninitialized value" error message > > Hi guys > I was wondering if you could help me with the following problem. > > I am getting the following error message: > &

"Use of uninitialized value" error message

2002-03-13 Thread Ho, Tony
Hi guys I was wondering if you could help me with the following problem. I am getting the following error message: Use of uninitialized value in string ne at format_imsi_msisdn.pl line 257. line 257 and beyond consist of the following: if ($result_value1 ne " ") { $a= substr($resu