In a list of items how can I remove one of the items.
put "a,b,c,d,e,f" into titems
I would like to remove the c from titems and leave the rest alone.
Even nicer is a way to remove item 3 from the list.
Thank you
How to remove item from list
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: How to remove item from list
Hi hudsonj,
...
delete item 3 of tItems
## -> a,b,d,e,f
...
Check "itemdelimiter" (default = COMMA) in the dictionary for further info about "items" etc...
Best
Klaus
...
delete item 3 of tItems
## -> a,b,d,e,f
...

Check "itemdelimiter" (default = COMMA) in the dictionary for further info about "items" etc...
Best
Klaus
Re: How to remove item from list
Hi hudsonj,
If you have only the value of the item you can use itemoffset
put itemoffset(c,titems) into LeNum
delete item Lenum of titems
All the best
Jean-Marc
If you have only the value of the item you can use itemoffset
put itemoffset(c,titems) into LeNum
delete item Lenum of titems
All the best
Jean-Marc
https://alternatic.ch