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

[REBOL] Re: Constant size string variable?

From: larry:ecotope at: 1-Dec-2001 16:05

Hi Bob,
> But how do I get the last 10, not the first 10? > > plus_pn: probe copy/part/tail plus_pn 10 > > That doesn't work because copy has no /tail refinment.
To get the last 10 elements of a series: plus_pn: copy skip tail plus_pn -10 Brett has given another solution, but you may find this handy anyway. -Larry