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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T07:28:14+00:00 2026-06-14T07:28:14+00:00

I am using Ruby (+ Sinatra) to work on one of my web projects.

  • 0

I am using Ruby (+ Sinatra) to work on one of my web projects.

I have an array with quite a bit of content and only want to display 10 of the array elements per page.


So what I did so far is:

  • creating an array with all of the content

    ary = ["ex1", "ex2", "ex3", … ,"ex60" ] // all elements
    
  • splitting the array into subarrays

    ary.each_slice(10).to_a // subarrays with fewer content
    

Now, I need a way to split the subarrays into single arrays and give them a name,

for example:

@subAry1 # ex1, ex2, ex3, … ex10
@subAry2 # ex11, ex12, ex13, … ex20
@subAry3 # ex21, ex22, ex23, … ex30

I stuck on creating these arrays with a continuing number in the array name.


When I would have my arrays split, I would use this in my .erb file:

<% currentAry = @subAry1 %>
<% currentAry.each do |element| %><%= element %><% end %>

and this to change the content, if the “next” button gets pressed:

currentAry = @subAry + '1'

Can somebody help me, or is it even an effective way, to split/display array elments on my page?

  • 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-14T07:28:15+00:00Added an answer on June 14, 2026 at 7:28 am

    How about an array of arrays? Here’s something to help you get started.

    all = ary.each_slice(10).to_a
    current_page = 0
    

    In the ERB file:

    <% all[current_page].each do |element| %><%= element %><% end %>
    

    and after the “next” button gets pressed

    current_page += 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have developed a web service(using ruby/sinatra/sqs) which runs on Linux Red Hat. I
I'm writing a smallish web service in Ruby using Sinatra. Access to pretty much
I am building an Ruby application using Sinatra (over Rack/Thin) and I want to
I am creating a web app using Ruby and Sinatra, and I'm splitting up
I have a plain ruby application (it's not a Web app, so not using
I'm extending my checkers game engine (built in Ruby) to the web using Sinatra.
I have test app written on ruby, using Sinatra+Sequel. config.ru: require './main' run Sinatra::Application
I have a Ruby/Sinatra application deployed on Heroku and I am using the IndexTank
I want to receive a JSON object using Ruby. I've written this: require 'sinatra'
I've developed a web application in Ruby (using Sinatra framework if that matters). It

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.