in reply to Extract Data

Since you didn't provide any input data, here is some generic advice from the Basic debugging checklist:

UPDATE: you split on $_

Replies are listed 'Best First'.
Re^2: Extract Data
by PilotinControl (Pilgrim) on May 29, 2013 at 13:45 UTC

    Hello Toolic, I made the following changes:

    my @fieldone = split(":", $_); # Does not retrieve data my @fieldtwo = split(":", $verify2); # Returns the correct data
      Has $_ been assigned a value?
      print ">>>$_<<<";