![]() | Download Help (Windows Only) |
Owning Class: string
Requires: MathScript RT Module
c = strconcat(a, b, ...)
Legacy Name: strcat
Horizontally concatenates input character matrices. You can specify an unlimited number of input character matrices. All matrices must have the same number of rows.
Name | Description |
---|---|
a | Specifies a character matrix. |
b | Specifies a character matrix. |
Name | Description |
---|---|
c | Returns the horizontal concatenation of a and b. c is a character matrix. |
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 strconcat'
B = 'test'
C = 'TEST'
D = strconcat(A, B, C)
Helpful
Not Helpful