in reply to Need help to convert excel file to text file

So for column wise the words are not aligned with each other..
You could check Text::Table like so:

use warnings; use strict; use Text::Table; my $table = Text::Table->new("Person1 ", " Person2"); $table->load( ['boy ',' girl'], ['father ',' mother'], ['sister ',' brother'], ); print $table;
Person1 Person2 boy girl father mother sister brother
Or Perl6::Form

If you tell me, I'll forget.
If you show me, I'll remember.
if you involve me, I'll understand.
--- Author unknown to me