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

[REBOL] Re: Best way to remove the last character from a string?

From: luc::spirlet::skynet::be at: 15-Dec-2004 19:50

Other fun alternative mystring: "abcdef" reverse mystring remove mystring reverse mystring result: "abcde" If you define mystring: "aaaaaa" The last a is removed. It's sure. But nobody don't prove it. It works too. :-)) Luc Spirlet Carl Read wrote: