×

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 string interpolation

Last Updated : December 15, 2025

Problem Solution

In this program, we will demonstrate string interpolation. The string interpolation allows you to combine strings.

Program/Source Code

The source code to demonstrate the string interpolation is given below. The given program is compiled and executed successfully.

# Ruby program to demonstrate the 
# string interpolation

Str = "India";

puts "Hello #{Str}";
puts "Total is: #{5+2}";

Output

Hello India
Total is: 7

Explanation

In the above program, we created a string variable Str that is initialized with "India". Then we used string interpolation. Ruby calls the to_s() method on the string interpolation block, this tells the object to convert itself into a string.

Ruby Strings Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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