Converting a nested list to return delimited string with TIDs
Converting a nested list to return delimited string with TIDs
- Subject: Converting a nested list to return delimited string with TIDs
- From: Ehsan Saffari <email@hidden>
- Date: Wed, 6 Jun 2001 22:54:27 -0600
I have a nested list:
{{"aa","bb","cc"},{"dd","ee","ff"}}
and I want to convert it to:
"aa"
"bb"
"cc"
"dd"
"ee"
"ff"
is this possible with TIDs? I've already done this with a repeat loop,
but can't figure out if TIDS can be applied to a list.
TIA
ehsan