http://www.perlmonks.org?node_id=1035847


in reply to Re: Extract Data
in thread Extract Data

Hello Toolic, I made the following changes:

my @fieldone = split(":", $_); # Does not retrieve data my @fieldtwo = split(":", $verify2); # Returns the correct data

Replies are listed 'Best First'.
Re^3: Extract Data
by toolic (Bishop) on May 29, 2013 at 13:55 UTC
    Has $_ been assigned a value?
    print ">>>$_<<<";