This function enables you to locate field values using standard DOS wildcards ( ? is a wildcard for a single character, * is a wildcard for any number of characters). It does this by comparing a String to a mask which contains one or more wildcards. The function returns True if the string matches the mask, and False if the string does not match the mask.
Parameters
Return value
The return value is True or False.
Examples
LooksLike("he is my brother", " he is my brother and friend")
LooksLike("he is my brother", "he is my brother")