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 9139695
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:25:16+00:00 2026-06-17T09:25:16+00:00

Argh. Having trouble here trying to work out how to build my array in

  • 0

Argh. Having trouble here trying to work out how to build my array in Ruby.

So I am looping through a result and I want to add the category field as the key and have it so that if the next row has the same category it gets put into that category. If not, it makes a new array and adds it to that.

Here is what I have so far.

data = Array.new
results.each do |row|
   data[row.category].push row.field
end

Which is not going to work I know. I want data[row.category] to eventually be (after the loop) an array containing all the row.field‘s

So I end up with an array that looks like this.

[['Dogs', 5, 12, 2], ['Cats', 4, 5, 9], ['Fish', 25, 82, 23]]

So no matter how many loops I do, if I push it into an array that already exists in data then it just appends it, if the array doesn’t exist it creates it and then appends it.

In PHP I would simply do this:

$data[$row['category']][] = $row['field']

With the empty [] denoting to create a new array if there is none. How do I do this in Ruby???

  • 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. Editorial Team
    Editorial Team
    2026-06-17T09:25:17+00:00Added an answer on June 17, 2026 at 9:25 am

    Yeah, you seem to be confused by PHP and its associative arrays (which aren’t called arrays in any other language 🙂 ). You need a hash. Try this snippet:

    data = results.each_with_object({}) do |row, memo|
      memo[row.category] ||= []  # create array unless it exists
      memo[row.category] << row.field
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey all. I'm having some trouble getting punctuation to be stripped out of an
I was trying to teach myself something new and having a look at the
This is probably an easy one, but I can't figure it out. argh... C#
argh, this should be an easy one. How can I set the directory that
it's i first time i'm asking here. Sorry if the answer is available already.
This problem is probably embarrassingly simple. I'm trying to give python a spin. I
Argh, today is the day of stupid problems and me being an idiot. I
I've made something wrong to my own git repository argh :/ Before I had
I've got a legacy app here that has a few 'time-consuming' loops that get
My OS is Archlinux with perl 5.14.2. I am just trying to write a

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.