Owning Class: string
Requires: MathScript RT Module
c = strcmp_i(a, b)
Legacy Name: strcmpi
Performs a case-insensitive 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 = 'TESTtest'
B = 'testTEST'
C = strcmp_i(A, B)