The Strictly Equal and Equal Operators

When two expressions are strictly equal, everything including the blanks and case (when the expressions are characters) is exactly the same.

When two expressions are equal, they are resolved to be the same. The following expressions are all true.
'WORD' = word              /* returns 1 */
'word ' \== word           /* returns 1 */
'word' == 'word'           /* returns 1 */
 4e2 \== 400               /* returns 1 */
 4e2 \= 100                /* returns 1 */

Reference Reference

Feedback


Timestamp icon Last updated: Tuesday, 7 January 2014


http://pic.dhe.ibm.com/infocenter/cicsts/v5r1/topic/com.ibm.cics.rexx.doc//dfhrx/dfhrx00032.html