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

[REBOL] Re: Parsing query.

From: mat:plothatching at: 27-Feb-2003 23:03

> str: "This is @ test one @ test two @ some more" > > What is the best way to parse this so I end up with... > > n: ["test one" "test two" "some more"]
n: parse/all str "@" You'd need to do some additional monkey-work to strip the tailing spaces to get the exact result you wanted. Mat.