I have two strings which appear identical. One is set up in a local string variable, as '442' and the other comes from an array and is also '442'.
I've put them side by side on the screen and they both look exactly like that, but for some reason, a C3 match doesn't want to match them (i.e System String1 = String2 isn't triggering).
I've tried trimming them both (e.g System trim(string1) = trim(string2)) but it's still not triggering.
Am I missing something else that can make identical looking strings not match up?