![]() |
STRING COMPAREName:
where <ival> is a parameter containing a 1 if the strings are identical and 0 if they are not; <s1> is the name of the first string; and <s2> is the name of the second string.
LET STRING S1 = file23.dat LET STRING S2 = file13.dat LET STRING S3 = file23.dat LET IVAL1 = STRING COMPARE S1 S2 LET IVAL2 = STRING COMPARE S1 S3The resulting values of IVAL1 and IVAL2 are 0 and 1, respectively.
Date created: 01/06/2011 |