Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Ruby String Exercises: Draw a string as bold or italic text

Ruby String: Exercise-1 with Solution

Write a Ruby program to draw a string as bold or italic text.

Ruby String Exercises: Draw a string as bold or italic text

Ruby Code:

def make_tags(tag, word)
    "<#{tag}> #{word} </#{tag}>"
end
print make_tags("i", "Ruby")
print "\n",make_tags("b", "Ruby")

Output:

<i> Ruby </i>
<b> Ruby </b>

Flowchart:

Flowchart: Draw a string as bold or italic text

Ruby Code Editor:

Contribute your code and comments through Disqus.

Previous: Ruby Array Exercises
Next: Write a Ruby program to insert a string of length 2 to an another string where the first string will be in the middle of the second string.

What is the difficulty level of this exercise?