Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 451327
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T21:57:28+00:00 2026-05-12T21:57:28+00:00

I have to parse a file so that I can import it to excel.

  • 0

I have to parse a file so that I can import it to excel. So, I thought the best way was to create a csv file. In this file, I have to divide contents into different categories and represent them in different columns. So, I have parsed the file to create different arrays corresponding to the categories. Now, I am trying to create a csv file with these arrays (thought of using a for loop). But the problem is, that arrays are of unequal length.

INPUT

NM_144736.3
NM_144963.1
XM_144975.2
BC144986.1
NM_144989.1
BC145001.1
XM_145018.2
NM_145015.2
XM_030711.2
AK145024.1
AK145030.1
NM_145034.1

I have used regex to parse data into different arrays. All the NM to @array1, XM to @array2, BC to @array3, AK to @array4.
If creating arrays is not a good idea, please let me know what is? How else can I go about generating csv file from the above data.

Edit:

OUTPUT

NM_144963.1,XM_144975.2,BC144986.1,AK145024.1
NM_144963.1,XM_145018.2,BC145001.1,AK145030.1
NM_144989.1,XM_030711.2
NM_145015.2
NM_145034.1
  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T21:57:28+00:00Added an answer on May 12, 2026 at 9:57 pm

    Parse and write directly to an excel spreadsheet, without importing:

    use Spreadsheet::WriteExcel;                                                    
    
    my %hash;                                                                       
    
    # Parse the data into a hash of arrayrefs                                       
    push @{$hash{substr $_, 0, 2}} => $_ for <DATA>;                               
    
    # Create spreadsheet                                                            
    my $workbook = Spreadsheet::WriteExcel->new('perl.xls');                        
    my $worksheet = $workbook->add_worksheet;                                       
    
    # Loop through hashref keys                                                     
    my @array = sort keys %hash;                                                    
    for (0..@array-1) {                                                             
    
      # Create column based on arrayref                                             
      $worksheet->write_col(0, $_, $hash{$array[$_]});.                             
    }                                                                               
    
    # Close and save spreadsheet                                                    
    $workbook->close;                                                               
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently I just have a file like this that I manually parse into a
How can I parse my CSV file without parsing first line ? This class
I have a csv file that contains a location field. I need to import
i have to parse files logs (5gb) error logs (1gb) import data file (csv)
I have a class that parses very large file (that can't fit in memory)
I have a binary file that I have to parse and I'm using Python.
I have a file that I open and parse and some of the categories
I have a huge file that I must parse line by line. Speed is
I have a XML file that I need to parse in the Android SDK.
I have an XML file that I'm trying to parse with Linq-to-XML. One of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.