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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T10:56:29+00:00 2026-06-17T10:56:29+00:00

I am using a ruby iterator on a view in a rails app like

  • 0

I am using a ruby iterator on a view in a rails app like so:

<% (1..@document.data.length).each_with_index do |element, index| %>
  ...
<% end %>

I thought the addition of the 1.. instead of just saying:
@document.data

would get the trick of having the index above start at 1. But alas, the above code index is still 0 to data.length (-1 effectively). So what am I doing wrong, i need the index to equal 1-data.length…no clue how to set up the iterator to do this.

  • 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-17T10:56:30+00:00Added an answer on June 17, 2026 at 10:56 am

    I think maybe you misunderstand each_with_index.

    each will iterate over elements in an array

    [:a, :b, :c].each do |object|
      puts object
    end
    

    which outputs;

    :a
    :b
    :c
    

    each_with_index iterates over the elements, and also passes in the index (starting from zero)

    [:a, :b, :c].each_with_index do |object, index|
      puts "#{object} at index #{index}"
    end
    

    which outputs

    :a at index 0
    :b at index 1
    :c at index 2
    

    if you want it 1-indexed then just add 1.

    [:a, :b, :c].each_with_index do |object, index|
      indexplusone = index + 1
      puts "#{object} at index #{indexplusone}"
    end
    

    which outputs

    :a at index 1
    :b at index 2
    :c at index 3
    

    if you want to iterate over a subset of an array, then just choose the subset, then iterate over it

    without_first_element = array[1..-1]
    
    without_first_element.each do |object|
      ...
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using Ruby on Rails 3.2.2 and I would like to set a
I am using Ruby on Rails 3.1 and I would like to know how
using ruby 1.9.2 and rails 3, i would like to limit the fields returned
I am using Ruby on Rails 3.2.2 and I would like to properly rescue
I am using Ruby on Rails 3.2.2 and I would like to use the
I am using Ruby on Rails 3 and I would like to set some
I am using Ruby on Rails 3 and I would like to know some
I am using Ruby on Rails and I would like to make HTTP requests
I am using Ruby on Rails 3 and I would like to start to
Possible Duplicate: Using Ruby variable in Javascript (In App View) is there a way

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.