![]() | Download Help (Windows Only) |
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. |
The following table lists the support characteristics of this function.
Supported in the LabVIEW Run-Time Engine | Yes |
Supported on RT targets | Yes |
Suitable for bounded execution times on RT | Not characterized |
A = 'TESTtest'
B = 'testTEST'
C = strcmp_i(A, B)
Helpful
Not Helpful