w3resource

Ruby Basic Exercises: Create a new string where "if" is added to the front of a given string

Ruby Basic: Exercise-12 with Solution

Write a Ruby program to create a new string where "if" is added to the front of a given string. If the string already begins with "if", return the string unchanged.

Ruby Basic Exercises: Create a new string where

Ruby Code:

def if_string(str)
    str[0, 3] == "if " ? str : "if " << str 
end
print if_string("if else"),"\n" 
print if_string("else"),"\n" 

Output:

if else
if else

Flowchart:

Flowchart: Create a new string where

Ruby Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Ruby program to print the following 'here document'.
Next: Write a Ruby program to create a new string from a given string using the first three characters or whatever is there if the string is less than length 3. Return n copies of the string.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.