in reply to Converting CSV files to fixed width flat files

Check out split to separate the CSV file into an array, and use printf to print it out fixed-width.

perldoc -f <function> if you need help with syntax, etc.

-s.