in reply to Re^3: Data validation and blank spaces in tab formatted csv file
in thread Data validation and blank spaces in tab formatted csv file
But the record is still going to invalid as the field $pending_move_out_dt is empty but containing white spaces. It should contain nothing where there is no data (just null value).chomp($pending_move_out_dt); $pending_move_out_dt =~ s/\s//g;
|
|---|