[REBOL] Re: Newbie Q: Search and delete from a Block
From: greggirwin:mindspring at: 3-Oct-2002 14:13
Hi Matt, << ["hello" "there" "this" "is" "an" "Example"] I want to search for "this" and delete it to result with: ["hello" "there" "is" "an" "Example"]>> >> head remove find ["hello" "there" "this" "is" "an" "Example"] "this"== ["hello" "there" "is" "an" "Example"] --Gregg