|
Contents | Previous | Next | Subchapters |
| Syntax |
unpack(vec, ch) |
| See Also | pack |
[Row1, ch, Row2, ch, ... , RowN]
and there are no other occurrences of the character
ch in the vector vec.
The return value has N rows and is equal to
row1
row2
...
rowN
where for each j,
rowj is equal to Rowj with leading spaces
removed.
In the special case where vec only contains spaces
and the ch character,
the return value has N rows and one column and its
elements are all spaces.
vec = "row 1, row 2, row 3"
ch = ","
unpack(vec, ch)
O-Matrix will respond
row 1
row 2
row 3