×

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 convert the hash collection into the string

Last Updated : December 15, 2025

Problem Solution

In this program, we will create a hash collection then we will convert the hash collection into the string using the to_s() method and print the converted string.

Program/Source Code

The source code to convert the hash collection into the string is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to convert hash 
# collection into string

hash = {"101" => "Arun", "102" => "Sumit"};

str = hash.to_a();

puts "Hash elements as string: ",str;

Output

Hash elements as string: 
101
Arun
102
Sumit

Explanation

In the above program, we created a hash collection to store student information. Then we used the to_s() method to convert the hash collection into the string and printed the converted string.

Ruby Hashes Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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