i'm trying to do a string comparison for 2 strings, one of which has a wild card..
In mel there was a way of doign this using gmatch.
CODE
if (gmatch(apple, "*ple")
in the above example: if the first string ends with the characters "ple" then true will be returned
i would need to do a very similar thing in python. If at all possible