<< blanks | String type | contains >> |
res = char(var) |
res = char(var1, var2) |
res = char(var1, var2, ..., varN) |
a cell of strings, string array or an numeric array.
strings or an numeric arrays.
a string
M = [ 104 101 108 108 111;
20320 22909 32 32 32];
char(M)
R = char('these', 'are', 'test', 'strings')
R = char(["these"; "are"; "test"; "strings"])
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET