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

  • Home
  • SEARCH
  • 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 97469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T00:00:39+00:00 2026-05-11T00:00:39+00:00

I’m just starting out using Ruby and I’ve written a bit of code to

  • 0

I’m just starting out using Ruby and I’ve written a bit of code to do basic parsing of a CSV file (Line is a basic class, omitted for brevity):

class File    def each_csv     each do |line|       yield line.split(',')     end   end  end  lines = Array.new  File.open('some.csv') do |file|   file.each_csv do |csv|      lines << Line.new(:field1 => csv[0], :field2 => csv[1])   end end 

I have a feeling I would be better off using collect somehow rather than pushing each Line onto the array but I can’t work out how to do it.

Can anyone show me how to do it or is it perfectly fine as it is?

Edit: I should have made it clear that I’m not actually going to use this code in production, it’s more to get used to the constructs of the language. It is still useful to know there are libraries to do this properly though.

  • 1 1 Answer
  • 0 Views
  • 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. 2026-05-11T00:00:39+00:00Added an answer on May 11, 2026 at 12:00 am

    Here’s a (possibly wild) idea, use the Struct class instead of rolling your own simple POD class. But what you want from this is to have a constructor that accepts all of the arguments that could be generated from the file data.

    Line = Struct.new(:field1, :field2, :field3) 

    Then at the core of the algorithm you want something like:

    File.open('test.csv').lines.inject([]) do |result, line|     result << Line.new(line.split(',', Line.length)) end 

    or being a bit more concise and functional-like:

    lines = File.open('test.csv').lines.map { |line| Line.new(line.split(',', Line.length)) } 

    To be honest I haven’t used the Struct class much, but I should be, and I will probably refactor stuff already written to use it. It allows you to access the variables by their names like:

    Line.field1 = blah Line.field2 = 1 

    The Ruby Struct class.

    So to actually answer your question, and looking above at the code, I would say it would be much simpler to use collect/map to perform the computation. The map function together with inject are very powerful and I find I use them quite frequently.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 76k
  • Answers 76k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer I figured it out myself now. You need to create… May 11, 2026 at 3:08 pm
  • added an answer Reading the API documentation, this is exactly how autogenerated fixtures… May 11, 2026 at 3:08 pm
  • added an answer There are two main protocols related to web services. 1st,… May 11, 2026 at 3:08 pm

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am currently running into a problem where an element is coming back from
Seemingly simple, but I cannot find anything relevant on the web. What is the
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.