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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T04:35:08+00:00 2026-06-04T04:35:08+00:00

I have a hash like h = {1 => {inner => 45}, 2 =>

  • 0

I have a hash like

h = {1 => {"inner" => 45}, 2 => {"inner" => 46}, "inner" => 47}

How do I delete every pair that contains the key “inner”?
You can see that some of the “inner” pairs appear directly in h while others appear in pairs in h

Note that I only want to delete the “inner” pairs, so if I call my mass delete method on the above hash, I should get

h = {1 => {}, 2 => {}}

Since these pairs don’t have a key == “inner”

  • 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-04T04:35:09+00:00Added an answer on June 4, 2026 at 4:35 am
    def f x 
      x.inject({}) do |m, (k, v)|
        v = f v if v.is_a? Hash  # note, arbitrarily recursive
        m[k] = v unless k == 'inner'
        m
      end
    end
    
    p f h
    

    Update: slightly improved…

    def f x
      x.is_a?(Hash) ? x.inject({}) do |m, (k, v)|
        m[k] = f v unless k == 'inner'
        m
      end : x
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have @hash that looks like this: [1, {:clid=>1, :nvz=>4, :tip=>IP, :name=>Mark, :record=>some text}]
I have a ruby hash which looks like {10.1.1.6=>nick, 127.0.0.1=>nick1} But I can't manage
On some of my pages, I have a hash in the url like this:
I have a ruby hash that I'd like to render using RABL . The
Let's imagine that I have something like this: <html> ... <div> <iframe src=test.html hash=r4d5f7></iframe>
I have a hash that looks like this: { bmw => { id =>
In perl, I have a hash that looks like the following: $hash{key1}->{a} = 1;
As per subject. I have some constants hash defined like so: #define CONST 40
I have a hash that contains a number of keys/values that need sorting by
I have a hash that looks something like this: params = { :irrelevant =>

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.