Re: Delete data in delimited string

2006-02-26 Thread Garrett Hylltun
Greetings André Thanks for this also, as it will be handy later in my project :-) -Garrett On Feb 26, 2006, at 2:13 AM, André.Bisseret wrote: Hello Garrett, Let me mention that in some other problem, you could need to keep room for a further value of an item 3; then it would be : put "i

Re: Delete data in delimited string

2006-02-26 Thread André . Bisseret
Hello Garrett, Let me mention that in some other problem, you could need to keep room for a further value of an item 3; then it would be : put "item 1,item 2, item 3, item 4" into tmp put empty into item 3 of tmp put tmp tmp = item 1,item 2,, item 4 Thus later, you can do : put "new value" in

Re: Delete data in delimited string

2006-02-26 Thread Garrett Hylltun
On Feb 26, 2006, at 12:06 AM, Martin Baxter wrote: Garrett Hylltun wrote: Greetings, How do I delete one field of data from a delimited string? Such as: item 1,item 2, item 3, item 4 And I want to delete "item 3" from the delimited string so that I end up with: item 1,item 2, item 4 Thanks

Re: Delete data in delimited string

2006-02-26 Thread Martin Baxter
Garrett Hylltun wrote: Greetings, How do I delete one field of data from a delimited string? Such as: item 1,item 2, item 3, item 4 And I want to delete "item 3" from the delimited string so that I end up with: item 1,item 2, item 4 Thanks, -Garrett put "Ya,boo,hoo" into tmp delete it

Delete data in delimited string

2006-02-25 Thread Garrett Hylltun
Greetings, How do I delete one field of data from a delimited string? Such as: item 1,item 2, item 3, item 4 And I want to delete "item 3" from the delimited string so that I end up with: item 1,item 2, item 4 Thanks, -Garrett ___ use-revolutio