![]() | Download Help (Windows Only) |
Owning Class: string
Requires: MathScript RT Module
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. |
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 = 'this is a test for strcmp'
B = 'is'
C = strcmp(A, B)
Helpful
Not Helpful