Member of the string class.
c = strcmp(a, b)
Performs a case-sensitive comparison of input strings.
| Name | Description |
| a | Specifies a string. |
| b | Specifies a string. |
| Name | Description |
| c | Returns 1 if a and b are the same. Otherwise, this function returns 0. c is a Boolean. |
A = 'this is a test for strcmp'
B = 'is'
C = strcmp(A, B)