Member of the string class.
c = strcat(a, b, ...)
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 strcat'
B = 'test'
C = 'TEST'
D = strcat(A, B, C)