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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T07:39:35+00:00 2026-05-15T07:39:35+00:00

I often want to take out a subpart from an Enumerable. The subpart is

  • 0

I often want to take out a subpart from an Enumerable. The subpart is sometimes at the beginning and sometimes the end of the original Enumerable instance, and the length used to specify the subpart is sometimes that of the subpart and sometimes its complement. That gives four possibilities, but I only know how to do three of them. Is there a way to do the fourth one?

1) Getting the first n elements:

[1, 2, 3, 4, 5].first(3) # => [1, 2, 3]    or
[1, 2, 3, 4, 5].take(3) # => [1, 2, 3]

2) Dropping the first n elements:

[1, 2, 3, 4, 5].drop(3) #=> [4, 5]

3) Getting the last n elements:

[1, 2, 3, 4, 5].last(3) #=> [3, 4, 5]

4) Dropping the last n elements:

[1, 2, 3, 4, 5].some_method(3) #=> [1, 2]
  • 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-15T07:39:35+00:00Added an answer on May 15, 2026 at 7:39 am

    There is no built-in way that does exactly this, but it’s easy to use slice with a negative index:

    [1, 2, 3, 4, 5][0...-3] # => [1, 2]
    

    and you could roll your own if you do that often:

    class Array
      def rdrop(n)
        self[0...-n]
      end
    end
    
    [1, 2, 3, 4, 5].rdrop(3) # => [1, 2]
    

    Note: last is not a method of Enumerable; the only way rdrop could be one would be to build the array first (like Enumerable#sort does)…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Very simple question. I want to take a picture/image of a usercontrol very often
I often want to change to the directory where a particular executable is located.
I often want to send sample apps to friends & colleages that work with
Motivation : I often want to paste the results of a quick analysis using
I'm putting together a Swing application where I often want to replace the contents
As an artist and musician, I often want to sit down and just let
In the Google Chrome debugger, I often want to get a reference to a
I usually write python in emacs. I'll often want to re-evaluate my file, which
When I load data in my code-behind, I find that often I want to
I often run into the situation where I want to disable some code while

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.