Hi,
I'm using l2s (from zexy) in order to concatenate together lists of variable lengths with pack, in other words:
[this is( [the text( [I want to pack(
| | | [l2s] [l2s] [l2s] | | |
[pack s s s ]
(hope the above makes sense).
This is working fine, and I'm doing that because I need the middle bit to change dynamically, e.g. change [the text(
to
[another bit of text(
Here's the twist though. I end up with a list of three items when what I really need is a list of all the words, each a symbol. Is there a way to do that?
Thanks,
Martin Dupras wrote:
Hi,
Here's the twist though. I end up with a list of three items when what I really need is a list of all the words, each a symbol. Is there a way to do that?
hmm, probably [s2l] ? should be in any recent version of zexy. note however, that a symbol "one 2 three" will result in 2 symbols and one float.
mfg.a.sdr IOhannes
Thanks,
- martin