$fullname =~ s/\s+/ /; #### $fullname =~ s/\s+/ /g; #### my ($lname, $fname) = split('\s+', $record[5]); #### my ($lname, $fname) = split( /\s+/, $record[5]); #### ----------------------------------- --the good, the bad and the physi-- -----------------------------------