Product Site

5.1.7.65. equals

Returns .true if the target string is strictly equal to the other string. Returns .false if the two strings are not strictly equal. This is the same comparison performed by the "==" comparison method.
Example 5.102. String class — equals method
"3"~equals("3")          -->    1
"33"~equals("3")         -->    0
"4"~equals("3")          -->    0