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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T16:25:20+00:00 2026-06-15T16:25:20+00:00

Is there a quick Ruby or Rails method to delete an element from an

  • 0

Is there a quick Ruby or Rails method to delete an element from an Array based on a condition provided in a block and then return that element?

Let’s say, given:

e1.good? # false
e2.good? # true
e3.good? # true
a = [e1, e2, e3]

Is there a method delete_and_return_if doing this:

a.delete_and_return_if { |e| e.good? }      # delete e2 from a and returns e2
[e1].delete_and_return_if { |e| e.good? }   # returns nil

Or at least is there a clean way 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-15T16:25:22+00:00Added an answer on June 15, 2026 at 4:25 pm

    If you do not have duplicates or that you want to delete all same elements, you can do

    a.delete(a.detect(&:good?))
    
    • a.detect(&:good?) will return the first good? object or nil if
      there is none.
    • a.delete(elem) will delete and return your element.

    Or if you have duplicates and only want to delete the first one:

    a.delete(a.index(a.detect(&:good?)))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a quick way ( existing method) Concatenate array element into string with
Is there anything like Ruby on Rails' script console for Perl's Catalyst? From rubyonrails.org
Hey there, is there a quick Ruby (or Rails) expression that returns nil if
Is there a quick way to submit (pre-defined) POST data from a hyperlink in
Is there a quick way to get a flattened List<TElement> from an ILookup<TKey, TElement>
Is there currently a plugin that you ruby on rails developers that are also
I just had a quick question regarding loops in Ruby. Is there a difference
Is there a quick way to get every other entry in an Array in
Is there a quick easy way to write the results from the query below
In Ruby on Rails Development (or MVC in general), what quick rule should I

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.