Mark wrote:
> I'll repeat again..........8-)
>
> POKE is the function you want to change a value at a series index position
>
> see below;
>
> >> string: "0000000000"
> == "0000000000"
> >> poke string 4 #"2"
> == "0002000000"

And 'change is better if you want to change a lot of values at once:

>> string: "0000000000"
== "0000000000"
>> change at string 4 "ABC"
== "0000"
>> string
== "000ABC0000"

Andrew Martin
ICQ: 26227169 http://members.nbci.com/AndrewMartin/
-><-


-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to