I would like to be able to compare multiple strings with each other and return true if they are all equal. If any of the strings equal "N/A" then they are to be ignored in the comparison. For example:
string1 = "hi";
string2 = "hi";
string3 = "hi";
string4 = "N/A";
would return true, but:
string1 = "hi";
string2 = "hey";
string3 = "hi";
string4 = "hi";
would return false.
Thanks for your help.