convertsatostr#
Purpose#
Converts a 1x1 string array to a string.
Format#
- str = convertsatostr(sa)#
- Parameters:
sa (1x1 string array)
- Returns:
str (string) – sa converted to a string.
Examples#
// Create a 1x1 string array
string sa = { "hello" };
// Convert to a string type
s = convertsatostr(sa);
print s;
The code above produces the following output:
hello
See also