[REBOL] Re: Newbie Q: Cropping text
From: belymt:saunalahti:fi at: 4-Jul-2002 0:56
At 15:49 3.7.2002 -0400, you wrote:>What line of code in REBOL will crop text? (Without loops) > >For example, I want the first 3 characters in the string "asdfghjkl". > >Result should be: "asd". >> A: "this is a string" >> B: copy/part a 3 >> print Bthi Ok?