Fastest way to filter a list based on partial matches.
I'm trying to see if there's a faster way to filter a list based off partial matches. See the code below. This is for JMP 12 by the way, before all of the list improvements. names default to here(1);dt = New table("Test", New Column("SomeList", Set Values(1::100000)), private);lista = Column(dt, "SomeList") << Data Type(Character) << Get Values;close(dt, no save);filter_by_partial_m...
