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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:02:56+00:00 2026-05-27T03:02:56+00:00

I have the following ruby hash: values = [ {FA1: [{Act 1: A},{Act 2:

  • 0

I have the following ruby hash:

values =  [ {"FA1": [{"Act 1": "A"},{"Act 2": "A"}] } ]

I need to iterate through the values array to get a string like this

cells = "[Act 1     A],[Act 2     B]"

Currently, I am trying this :

values[0]['FA1'].each do |key, val|
  cells = [#{key} #{val}]
end

which gives me the value of

#{key} as Act 1 A and #{val} as empty

And how can I append these values to a variable separated by a ‘,’?

  • 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-05-27T03:02:57+00:00Added an answer on May 27, 2026 at 3:02 am

    It’s weird but anyway…

    cells = []
    values[0]['FA1'].each do |hash|
      hash.keys.each { |key| cells << "[#{key}   #{hash[key]}]" }
    end
    cells.join(",")
    

    This will generate:

    "[Act 1  A],[Act 2  A]"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Ruby hash that contains a user-generated string. I need to pass
I have a ruby hash like this h = {a => 1, b =>
I have the following code in Ruby. I want to convert this code into
This is not a ruby/rails project deploy. I have the following situation and I
I have a Ruby hash with variables: a two-element array of strings an integer
I have two arrays like this: keys = ['a', 'b', 'c'] values = [1,
Say you have the following Ruby hash, hash = {:a => [[1, 100..300], [2,
I have the following hash: {a=>2, d=>5, f=>1, g=>1, h=>1, i=>1, z=>2} In ruby,
Let's say I have the following ruby code : def use_object(object) puts object.some_method end
If I have the following piece of Ruby code: class Blah def self.bleh @blih

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.