Ruby program to compare two strings are equal or not
Following program shows you how to compare two strings are equal or not.
In this program we get strings from user and compare those strings using ==
method
puts "Please enter first string:"
string1 = gets.to_s
puts "Please enter second string:"
string2 = gets.to_s
if string1 == string2
puts "Given strings are equal"
else
puts "Given strings are not equal"
end
Output:
Example1:
Please enter first string:
hello
Please enter second string:
hello
Given strings are equal
Example2:
Please enter first string:
hello
Please enter second string:
HELLO
Given strings are not equal