Manipulation
Strings are actually arrays of characters. As such, they can be manipulated as vector/matrices.
str1 = 'abcd'
str2 = 'efgh'
str3 = str1(2:3)
str4 = [str1 str2]
str4 is a string obtained by concatenation and contains abcdefgh.
In addition, the OpenMatrix language includes a complete set of functions to manipulate strings. The functions are described in detail in the Strings chapter of the Reference Guide.