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. |
A = 'this is a test for strconcat'
B = 'test'
C = 'TEST'
D = strconcat(A, B, C)