Compare Two Strings
String comparisons are performed in the same manor as number comparisons. As an example, we will create two strings, and perform an action based on their contents:
Create two variables containing strings:
String1 = "I am String1";
String2 = "I am String2";
Compare the two...