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

[REBOL] Re: Exclude Problems

From: allenk:powerup:au at: 27-Sep-2001 17:23

----- Original Message ----- From: "G. Edw. Learned" <[learned--talentsinc--net]> To: <[rebol-list--rebol--com]> Sent: Thursday, September 27, 2001 8:08 AM Subject: [REBOL] Re: Exclude Problems
> I thought that too, which is why I reduced it down to excluding just one > item, SYSTEM, and it still took out words like SEAGATE and strings like > "----". Is a puzzlement.
Exclude also cleans up duplicate entries, such as.
>> exclude ["AA" "B" "C" "D" "E" "AA" "F" "G" "AA" "B" "AA" "B"] ["C" "F"]
== ["AA" "B" "D" "E" "G"] Could that explain what you are seeing? Cheers, Allen K