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

[REBOL] Re: Newbie Q: Search and delete from a Block

From: pwoodward:cncdsl at: 3-Oct-2002 16:09

Hey - assuming your series is done like so - your_series: ["hello" "there" "this" "is" "an" "Example"] you can remove found values from the series like so - remove/part your_series find your_series "this" - Porter