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

[REBOL] Re: How to compose a string with a specific separator

From: moliad:g:mail at: 11-Jul-2007 11:48

tought I'd take a 30 sec break and solve this using parse :-) a: [1 2 3] parse a [any [blk: skip (unless empty? next blk [insert next blk ","]) skip ] ] == [ 1 "," 2 "," 3" ] -MAx On 7/11/07, Alessandro Manotti <ale870-gmail.com> wrote: