tbl2text
-- concatenate the
strings in a tabletbl2text
concatenates all entries of a table of
character strings.
tbl2text(strtab)
strtab |
- | a table of character strings |
a character string.
_concat
, coerce
, expr2text
, int2text
, text2expr
, text2list
, text2tbl
1
, 2
,
3
etc. All entries must be character strings. They are
concatenated in the order of their indices.tbl2text
restores strings split by text2tbl
.tbl2text
is a function of the system kernel.A character string can be created from an arbitrary number of table entries:
>> tbl2text(table(1 = "Hell", 2 = "o", 3 = " ", 4 = "world."))
"Hello world."