Peter- Saturday, July 20, 2013, 9:22:00 AM, you wrote:
> How about something like this: > put tList into list1 > put tList into list2 > put tList into list3 > filter list1 with "*" & item 1 of gCodes & "*" > filter list2 with "*" & item 2 of gCodes & "*" > filter list3 with "*" & item 3 of gCodes & "*" > put list1 & cr & list2 & cr & list3 into outputList You still need to remove the duplicates after filtering: repeat for each line tLine in outputList put true into tArray[tLine] end repeat repeat for each key tKey in tArray put tKey & cr after tFilteredList end repeat -- -Mark Wieder [email protected] _______________________________________________ use-livecode mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode
