equals() is used to compare the current string to another string value. The method returns an integer value, which is 1 (TRUE) if the compared values are equal and 0 (FALSE) if not:
DEFINE pass, pass_ch STRING
DEFINE equa INT
...
LET equa = pass.Equals(pass_ch)
The method is case-sensitive.