How do I use contains function to find a part of a variable name?
Hi, I'm trying to find a way to execute a function which happens when a list contains the string "[String]" like so: AAList = {"object1", "object2", "object3[String]"}; If( Contains( AAList, "[String]"),
Show("string is running") ); But the if function isn't executed because the contains function doesn't detect the "[String]".Any way to solve this?