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

[REBOL] Trim question Re:

From: rryost:home at: 10-Oct-2000 16:11

I think you have the two argument strings interchanged. Also, all the characters in the 'with string are used separately. A console session:
>> a: "onetwothreefour"
== "onetwothreefour"
>> a3: trim/with copy a "two"
== "nehreefur"
>>
Russell [rryost--home--com]