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.
Program/Source Code:
The source code to get a substring from the string is given below. The given program is compiled and executed successfully.
Output:
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.
need an explanation for this answer? contact us directly to get an explanation for this answer