tbl2text -- concatenate the
strings in a table
Introductiontbl2text concatenates all entries of a table of
character strings.
Call(s)tbl2text(strtab)
Parametersstrtab |
- | a table of character strings |
Returnsa character string.
Related
Functions_concat, coerce, expr2text, int2text, text2expr, text2list, text2tbl
Details1, 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.
Example
1A character string can be created from an arbitrary number of table entries:
>> tbl2text(table(1 = "Hell", 2 = "o", 3 = " ", 4 = "world."))
"Hello world."