Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Change/part

From: andrew:wxc at: 24-Feb-2001 10:11

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/