![]() | Download Help (Windows Only) |
Owning Class: string
Requires: MathScript RT Module
c = strcmp_n(a, b, n)
Legacy Name: strncmp
Performs a case-sensitive comparison of the first n characters in the input strings.
Name | Description |
---|---|
a | Specifies a string. |
b | Specifies a string. |
n | Specifies the number of characters in a and b to compare. n is a positive integer. |
Name | Description |
---|---|
c | Returns 1 if the first n characters in 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_n'
B = 'this can not be true'
C = strcmp_n(A, B, 3)
Helpful
Not Helpful