Home »
Swift »
Swift Programs
Swift program to compare two strings using equal to (==) operator
Here, we are going to learn how to compare two strings using equal to (==) operator in Swift programming language?
Submitted by Nidhi, on June 11, 2021
Problem Solution:
Here, we will create strings and compare them using the equal to (==) operator and print appropriate messages on the console screen.
Program/Source Code:
The source code to compare two strings using the equal to (==) operator is given below. The given program is compiled and executed successfully.
// Swift program to compare two strings
// using equal to (==) operator
var str1 = "Hello World";
var str2 = "Hello World";
var str3 = "Hiii";
if(str1==str2)
{
print("str1 and str2 are equal");
}
else
{
print("str1 and str2 are not equal");
}
if(str1==str3)
{
print("str1 and str3 are equal");
}
else
{
print("str1 and str3 are not equal");
}
Output:
str1 and str2 are equal
str1 and str3 are not equal
...Program finished with exit code 0
Press ENTER to exit console.
Explanation:
In the above program, we imported a package Swift to use the print() function using the below statement,
import Swift;
Here, we created three strings str1, str2, str3 with some initial values. Then we compared strings using the equal to (==) operator and printed the appropriate messages on the console screen.
Swift String Programs »