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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:39:59+00:00 2026-05-27T02:39:59+00:00

I have an array: <% @widgets.each do |w| %> … <% end %> How

  • 0

I have an array:

<% @widgets.each do |w| %>
...
<% end %>

How can I display them in groups? Let’s say by 4:

<div>1, 2, 3, 4</div>
<div>5, 6, 7, 8</div>
etc.

Thank you.

  • 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-27T02:39:59+00:00Added an answer on May 27, 2026 at 2:39 am

    Try to use each_slice(n):

    require 'erb'
    
    @widgets = (1..8).to_a
    
    template = <<EOF
    <% @widgets.each_slice(4) do |w| %>
      <div><%= w.join(', ') %></div>
    <% end %>
    EOF
    
    puts ERB.new(template).result(binding)
    # =>
      <div>1, 2, 3, 4</div>
      <div>5, 6, 7, 8</div>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say that I have some widgets, and each widget has events. Each event
Let's say I have array of bytes: byte[] arr = new byte[] { 0,
I have a products array of widgets. Some widgets have the reserved period symbol
Have an array of chars like char members[255]. How can I empty it completely
I have an included javascript file thats initializes an empty array object called widgets
I can not manage to have both i18n and tinyMCE widgets on internationalised fields.
How can I store button, listbox and other wxpython widgets in an array? My
I have a list view full of items that contain multiple widgets each such
I'm making a website to sell widgets. I have a table for widgets, each
Let's say I have a matrix of values that I want to populate, that

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.