Owning Class: string
Requires: MathScript RT Module
c = strvconcat(a, b, ...)
Legacy Name: strvcat
Vertically concatenates input character matrices. LabVIEW pads rows with blank spaces if necessary. You can specify an unlimited number of character matrices. All matrices must have the same number of columns.
| Name | Description |
|---|---|
| a | Specifies a character matrix. |
| b | Specifies a character matrix. |
| Name | Description |
|---|---|
| c | Returns the vertical concatenation of a and b. c is a character matrix. |
A = 'this is a test for strvconcat'
B = 'test'
C = 'TEST'
D = strvconcat(A, B, C)