Q:

Swift program to compare two strings using equal to (==) operator

belongs to collection: Swift String Programs

0

Here, we will create strings and compare them using the equal to (==) operator and print appropriate messages on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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 str1str2str3 with some initial values. Then we compared strings using the equal to (==) operator and printed the appropriate messages on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Swift program to iterate string character by chara... >>
<< Swift program to get the length of a string...