Ruby program to get a substring from the string

Ruby Example: Write a program to get a substring from the string.
Submitted by Nidhi, on December 31, 2021

Problem Solution:

In this program, we will create a string variable and then we will get the substring from created string using a specified range index.

Program/Source Code:

The source code to get a substring from the string is given below. The given program is compiled and executed successfully.

# Ruby program to get a substring 
# from the string

Mystr = "Hello World";
SubStr= Mystr[2..7];

print "Mystr: ",Mystr,"\n";
print "SubStr: ",SubStr,"\n";

Output:

Mystr: Hello World
SubStr: llo Wo

Explanation:

In the above program, we created a string variable Mystr initialized with "Hello World". Then we got the substring using a specified range index and assigned it to the Substr variable. After that, we printed both variables.

Ruby Strings Programs »





Comments and Discussions!

Load comments ↻






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