how to read individual values seperated by comma?
Hi,
I need to pass multiple numbers quickly between multiple sub-apps and want to use global strings to do so. How would I first, create the string thats a collection of variables(numbers), and then more importantly read them individually in sequence in a fastloop?
I'm hoping I can do it this way somehow instead of using even more harddrive acessing via ini files....
anyone know if this is possible?
thanks
Re: how to read individual values seperated by comma?
The easiest way would be using http://ext.neatwares.ath.cx/ext/String_tokenizer.
Split the string with delimters ", " (for example).
Then, start a fast loop *Element count* times.
(I don't know the expression by heart)
On loop, do something with Val(Element$("String Tokenizer",loopindex("your loop"))).
Re: how to read individual values seperated by comma?
thanks much, Looki. thats exactly what I needed. :)