in reply to Splitting each line into an array from file

This will also catch spaces (tabs, etc.):
my @elements = split //, $one;
This is explained in split