Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Ruby_04

# Hello World Program in Ruby
Name="Naresh"
puts Name
Name1="naresh"
puts Name1.upcase()
Name2="NARESH"
puts Name2.downcase()
Name3="         Naresh         "
puts Name3
Name4="         Naresh         "
puts Name4.strip()
Name5="Naresh"
puts Name5.length()
Name6="Naresh"
puts Name6.include? "esh"
Name7="Naresh"
puts Name7.include? "Zim"
Name8="Naresh"
puts Name8[5]
Name9="Naresh"
puts Name9[0,3]
Name10="Naresh"
puts Name10.index("r")
puts "zimbre".upcase()

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.