in reply to Re^2: I don't understand why I'm getting an "Use of uninitialized value" error
in thread I don't understand why I'm getting an "Use of uninitialized value" error

This should work:

my @search = ( qr[<ID>(.*?)</ID>], # ID qr[<TimeStamp>(.*?)</TimeStamp>], # Time Stamp qr[<IP_Address>(.*?)</IP_Address>], # IP Address qr[<Title>(.*?)</Title>], # Title qr[<Complainant><Entity>(.*?)</Entity>], # Reporting Enti +ty qr[<Contact>(.*?)</Contact>], # Reporting Entity Cont +act qr[<Address>(.*?)</Address>], # Reporting Entity Addr +ess qr[</Phone><Email>(.*?)</Email>], # Reporting Entity Emai +l Address );
  • Comment on Re^3: I don't understand why I'm getting an "Use of uninitialized value" error
  • Download Code