×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

Ruby Programs

Ruby program to demonstrate the delete_if() method

Last Updated : December 15, 2025

Problem Solution

In this program, we will create a hash collection then we will remove some elements from the hash collection based on the condition specified in the delete_if() method.

Program/Source Code

The source code to demonstrate the delete_if() method is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to demonstrate the 
# delete_if() method

hash = { "a" => 100, "b" => 200, "c" => 300,"d" => 400};

puts "Hash collection before deletion: ",hash;

result = hash.delete_if{|key, value| value <= 200 };
puts "Hash collection after deletion: ",result;

Output

Hash collection before deletion: 
{"a"=>100, "b"=>200, "c"=>300, "d"=>400}
Hash collection after deletion: 
{"c"=>300, "d"=>400}

Explanation

In the above program, we created a hash collection to store student information. Then we used the delete_if() method to remove elements from the hash collection based on the specified condition. After that, we printed the result hash collection.

Ruby Hashes Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.