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

[REBOL] Re: Parsing query.

From: ptretter:charter at: 27-Feb-2003 20:28

parse-it: func [str /local newstr][ newstr: copy [] foreach item parse/all find str "@" "@" [append newstr trim item] return remove newstr ] Paul Tretter